/* CSS for Notes System */
.notes-section {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.note-group {
    margin-bottom: 1rem;
}

.note-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.note-textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.8rem;
    color: white;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.note-textarea:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(0, 0, 0, 0.3);
}

.status-select,
.date-input,
.amount-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.8rem;
    color: white;
    margin-bottom: 0.5rem;
}

.status-select option {
    background: #1a1a2e;
    /* Dark background for options */
}

.conditional-field {
    display: none;
    /* Hidden by default */
    margin-top: 0.5rem;
    animation: fadeIn 0.3s ease;
}

.save-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.save-btn:hover {
    background: #764ba2;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* YENİ: Şube Güncellemeleri Kartı */
.branch-updates-card {
    background: rgba(102, 126, 234, 0.15);
    /* Hafif mavi arka plan */
    border-left: 4px solid #667eea;
    /* Sol tarafta vurgu çizgisi */
    border-radius: 0 8px 8px 0;
    padding: 1rem;
    margin-top: 1rem;
}

.branch-updates-header {
    font-weight: bold;
    color: #a3bffa;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.branch-updates-content {
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.5;
}

.update-item {
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
}

.update-icon {
    margin-right: 0.5rem;
}