/* Organization Cards */
.organization-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.organization-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Notes Cards */
.note-card {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.note-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.note-card .card-header {
    padding: 0.75rem 1rem;
}

.note-card .card-body {
    padding: 1rem;
}

.note-card .card-footer {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.03);
}

/* Organization Switcher */
.organization-switcher .dropdown-menu {
    min-width: 200px;
}

.organization-switcher .dropdown-item.active {
    background-color: var(--bs-primary);
    color: white;
}

/* Organization Dropdown */
.org-switcher-container {
    display: flex;
    align-items: center;
}

.dropdown-menu {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: var(--bs-primary);
    color: white;
}

.dropdown-item .oi {
    margin-right: 8px;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 160px;
}

/* Modal Styles */
.modal-backdrop {
    opacity: 0.5;
}

.modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .top-row .organization-switcher {
        margin-bottom: 10px;
    }
}
