.settings-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.settings-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.settings-section {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.settings-section h2 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: var(--primary-color);
}

.settings-form {
    display: grid;
    gap: 20px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.danger-zone {
    border-left: 4px solid var(--accent-color);
}

.danger-actions {
    margin-top: 20px;
}

.danger-button {
    background-color: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.danger-button:hover {
    background-color: #c0392b;
}

.cancel-button {
    background-color: #95a5a6;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    margin-left: 10px;
    transition: background-color 0.3s;
}

.cancel-button:hover {
    background-color: #7f8c8d;
}

.public-profile-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.profile-header {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h1 {
    margin: 0;
    font-size: 2rem;
    color: var(--text-color);
}

.profile-info h2 {
    margin: 5px 0 15px;
    font-size: 1.2rem;
    color: var(--light-text);
    font-weight: normal;
}

.profile-bio {
    margin-bottom: 15px;
    line-height: 1.6;
}

.profile-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--light-text);
}

.profile-meta i {
    margin-right: 5px;
}

.profile-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 36px;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: var(--secondary-color);
}

.profile-content {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .profile-social {
        justify-content: center;
    }
}