/* HinduHum Professional Dashboard CSS */
.hh-dashboard-container {
    display: flex;
    min-height: 80vh;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.hh-dashboard-sidebar {
    width: 250px;
    background: #ffffff;
    border-right: 1px solid #eaeaea;
    padding: 20px 0;
}

.hh-user-brief {
    text-align: center;
    padding: 0 20px 20px;
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 20px;
}

.hh-user-brief img {
    border-radius: 50%;
    margin-bottom: 10px;
}

.hh-user-brief h3 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: #333;
}

.hh-user-brief p {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
}

.hh-dash-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hh-dash-menu li {
    margin: 0;
}

.hh-dash-menu a {
    display: block;
    padding: 12px 20px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.hh-dash-menu a:hover,
.hh-dash-menu a.active {
    background: #f0f4f8;
    color: #0073aa;
    border-left: 4px solid #0073aa;
}

.hh-dashboard-content {
    flex: 1;
    padding: 30px;
    background: #f8f9fa;
}

.hh-tab-content h2 {
    margin-top: 0;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.hh-profile-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-box {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    flex: 1;
    text-align: center;
}

.stat-box span {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #0073aa;
    margin-top: 5px;
}

.hh-profile-details p {
    background: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.hh-post-actions {
    margin-bottom: 20px;
}

.hh-btn {
    display: inline-block;
    padding: 10px 15px;
    background: #e0e0e0;
    color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.hh-btn.active, .hh-btn-primary {
    background: #0073aa;
    color: #fff;
}

.hh-setting-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-end;
}

.hh-setting-row label {
    flex: 1;
    display: flex;
    flex-direction: column;
    font-weight: bold;
    color: #555;
}

.hh-setting-row input,
.hh-setting-row select,
#hh-settings-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 5px;
}

#hh-settings-form textarea {
    width: 100%;
    min-height: 80px;
}

.hh-alert {
    background: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #ffeeba;
}
