#updateModal .update-modal-content{
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

#updateModal .modal-content .modal-header{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#updateModal .modal-content .modal-header h5{
    color:white;
}

#updateModal .modal-content .modal-body{
    width:95%;
    height: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin:0;
}

#updateModal .modal-content .modal-body .update-section {
    width: 100%;
    margin-bottom: 25px;
    padding: 15px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
} 

#updateModal .modal-content .modal-body .update-section-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2d2d2d;
    display: flex;
    align-items: center;
    gap: 6px;
}

#updateModal .modal-content .modal-body .update-list {
    list-style-type: disc;
    margin-left: 20px;
    color: #333;
    height: 100px;
    overflow-y: auto; /* use 'auto' instead of 'scroll' */
    overflow-x: hidden;
}

.update-list::-webkit-scrollbar {
    width: 8px;
}

.update-list::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.update-list::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

#updateModal .modal-content .modal-body #update-feedback-form textarea {
    resize: vertical;
}

#updateModal .modal-content .modal-body #update-feedback-form .btn {
    font-size: 0.9rem;
    padding: 6px 16px;
}

#feedback-success-message{
    font-weight: 600;
    color: #00b300;
}
