#profile-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

.profile-info,
.contact-section,
.address-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
}

@media (max-width:640px) {
    .profile-info,
    .contact-section,
    .address-section {
        padding: 8px;
    }

}
.profile-info:hover,
.contact-section:hover,
.address-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.profile-header h1 {
    font-size: 16px;
    font-weight: 600;
    color: #9a9a9a;
}

.profile-pic-wrapper {
    display: flex;
    align-items: center;
}

.profile-inner-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #111, #444);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-placeholder {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
}

.contact-section h3,
.address-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f1f1f;
}

.contact-attriutes p,
.profile-attributes p {
    margin-bottom: 12px;
    font-size: 12px;
    color: #444;
}

.contact-attriutes strong,
.profile-attributes strong {
    color: #111;
}

.profile-email {
    display: flex;
    align-items: center;
    gap: 10px;
}

.unverified {
    font-size: 12px;
    color: #dc2626;
    cursor: pointer;
    margin-bottom: 12px;
    font-weight: 600;
}

.verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #16a34a;
    margin-bottom: 12px;
    font-weight: 600;
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.btn-edit-profile {
    font-size: 10px;
    padding: 6px 12px;
    border-radius: 8px;
    background: #141414;
    color: #e4e4e4;
    transition: all 0.2s ease;
}
.btn-edit-profile:hover {
    background: #5c5c5c;

}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 12px;

    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #111;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}

.row {
    display: flex;
    gap: 12px;
}

.col-md-6 {
    flex: 1;
}

.form-save {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.form-save .btn {
    background: #111;
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.form-save .btn:hover {
    background: #333;
}

.form-save a {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.profile-actions {
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 20px;
    align-items: center;
}

.profile-actions a {
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
    width: 100%;
}

.profile-actions a:hover {
    text-decoration: underline;
}

.profile-actions button {
    background: none;
    border: none;
    font-size: 14px;
    color: #dc2626;
    cursor: pointer;
    width: 8rem;
}

.profile-actions button:hover {
    background-color: #b91c1c;
    color: #ffc0c0;
    padding: 6px 8px;
    border-radius: 14px;
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;

        gap: 10px;
        font-size: 12px;
    }

    .row {
        flex-direction: column;
    }
}
