.data-form {
    max-width: 700px;        
    margin: 2rem auto;       
    padding: 2rem;           
    background-color: white; 
    border-radius: 12px;     
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}

#form-title {
    text-align: center;
    font-weight: bolder;
    color: #FF8C42;
}

.form-group label {
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea{
    margin: 0.5vh 0.5vh;
    padding: 0.2rem 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    background-color: white;
}

#submit-post {
    background-color: #FF8C42;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 0.5rem;
}

#post-errors {
    position: relative;
    background-color: rgba(255, 0, 51, 0.85);
    border-radius: 12px;         
    margin: 0.5rem auto;
    color: white;
    width: fit-content;
    padding: 0.75rem 1rem;       
    font-size: 0.9rem;           
    font-weight: 500;
    line-height: 1.4;
    gap: 0.5rem;
}

#errors-list {
    margin: 0.25rem 0 0 1rem;   
    padding: 0;
    list-style-type: disc;
}

#close-errors {
    position: absolute;
    top: 2.5%;
    right: 2%;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

#confirm-add-post-btn {
    background-color:green;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    margin-right: 0.5rem;
}

#deny-add-post-btn {
    background-color:rgb(254, 62, 62);
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}