:root {
    --primary-gradient: linear-gradient(180deg, #6c757d 0%, #343a40 100%);
    /* Gray scale gradient */
    --kites-dark: #212529;
    --kites-light: #f8f9fa;
    --kites-gray: #e9ecef;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f6f6f6 !important;
}

.header-section {
    background: rgb(108, 117, 125);
    background: linear-gradient(180deg, rgba(108, 117, 125, 1) 0%, rgba(220, 220, 220, 1) 100%);
    padding-top: 40px;
    padding-bottom: 50px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.logo-container {
    width: 140px;
    height: 140px;
    border: 4px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
    font-size: 0.8rem;
    background-color: white;
}

.action-btn {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.action-btn:active {
    transform: scale(0.95);
}

.contact-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background-color 0.2s;
    text-decoration: none;
    color: inherit;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:active,
.contact-item:hover {
    background-color: #fafafa;
}

.icon-box {
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info {
    flex-grow: 1;
    overflow: hidden;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #adb5bd;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: #212529;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#add-contact-btn {
    font-weight: 500;
    border: none;
}