﻿.select2-container {
    width: 100% !important;
    padding: 0;
}

#new-note-parent-select:disabled {
    background-color: #f0f0f0;
}

/* Modal-specific styles with more specific selectors */
#noteModal .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

#noteModal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#noteModal .modal-title {
    font-weight: 600;
}

#noteModal .modal-body .form-label {
    font-weight: 500;
}


#noteModal .modal-footer {
    border-top: none;
    padding-top: 0;
}

/* File Drop Zone Styles */
/* New styles for the upload area */
.note-upload-area {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

    .note-upload-area.drag-over {
        background-color: #e9ecef !important;
        border-color: #3b82f6 !important;
    }

.note-file-thumbnail {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 0.5rem;
}
