﻿/* Profile & Logo Upload */
.profile-preview {
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 2px solid #E0E6EB;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: block;
}

    .profile-preview.placeholder {
        background: #f8f9fb;
    }

.org-logo {
    width: 220px;
    height: 120px;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid #E0E6EB;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 8px;
}

/* Details */
.details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    background: #f1f2f3;
}

.detail-label {
    font-weight: 600;
    color: #1E293B;
    margin-right: 20px;
}

.detail-value {
    color: #374151;
}
