/* General Styles */
:root {
    --primary-color: #2271b1;
    --secondary-color: #135e96;
    --text-color: #333;
    --light-gray: #f0f0f1;
    --border-color: #dcdcde;
}

.Bcoderdash-dashboard-page {
    background-color: #f0f2f5!important;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Dashboard Header */
.dashboard-header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.header-content {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-picture img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Dashboard Container */
.dashboard-container {
    max-width: 1200px;
    margin: 80px auto 2rem;
    padding: 2rem;
}

/* Dashboard Widgets */
.dashboard-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.dashboard-widget {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.dashboard-widget h3 {
    margin-top: 0;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    flex-flow: column wrap;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}
#profile-edit-form{
    height: 406px;
}
/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
    border-color: #ddd;
}

.form-group input[readonly]:focus {
    border-color: #ddd;
    box-shadow: none;
}

.form-message {
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.form-message.error {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

/* Widget Styles */
.Bcoderdash-widget {
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    max-width: 300px;
    margin: 1rem auto;
}

.widget-content {
    text-align: center;
}

.widget-header h2 {
    margin: 0;
    font-size: 1.2rem;
    color: #1d2327;
}

/* Dashboard Styles */
.dashboard-content {
    max-width: 1200px;
    margin: 0 auto;
}

.welcome-section {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.welcome-section h1 {
    margin: 0;
    color: #1d2327;
    font-size: 2rem;
}

.welcome-section .user-email {
    color: #646970;
    margin: 0.5rem 0 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.dashboard-widget {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.widget-header {
    background: #f0f0f1;
    padding: 1rem;
    border-bottom: 1px solid #dcdcde;
}

.widget-header h2 {
    margin: 0;
    font-size: 1.2rem;
    color: #1d2327;
}

.widget-content {
    padding: 1rem;
}

/* Recent Posts Widget */
.recent-posts-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recent-posts-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f1;
}

.recent-posts-list li:last-child {
    border-bottom: none;
}

.recent-posts-list a {
    color: #2271b1;
    text-decoration: none;
    display: block;
}

.recent-posts-list .post-date {
    font-size: 0.8rem;
    color: #646970;
    display: block;
    margin-top: 0.2rem;
}

/* Account Info Widget */
.account-info .info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f1;
}

.account-info .info-row:last-child {
    border-bottom: none;
}

.account-info label {
    color: #646970;
    font-weight: 500;
}

/* Profile Modal */
.profile-picture-preview {
    text-align: center;
    margin-bottom: 1rem;
}

.profile-picture-preview img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Header Profile */
.dashboard-header {
    background: #fff;
    padding: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}
.dashboard-header .header-content {
    padding: 0;
    margin: 0;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.site-branding h1 {
    margin: 0;
    font-size: 1.5rem;
	color: #000 !important;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-picture img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Footer */
.dashboard-footer {
    background: #fff;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid #dcdcde;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: #646970;
    text-decoration: none;
}

.footer-nav a:hover {
    color: #2271b1;
}

/* Registration Page Styles */
.register-page .password-requirements {
    margin-top: 10px;
    font-size: 0.9em;
}

.register-page .password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.register-page .requirement {
    color: #646970;
    padding: 2px 0;
    position: relative;
    padding-left: 20px;
}

.register-page .requirement:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #d63638;
}

.register-page .requirement.met:before {
    content: "✓";
    color: #00a32a;
}

.register-page .password-strength-meter {
    height: 4px;
    background: #f0f0f1;
    margin-top: 5px;
    border-radius: 2px;
    position: relative;
}

.register-page .password-strength-meter:after {
    content: attr(data-strength);
    position: absolute;
    right: 0;
    top: -20px;
    font-size: 0.8em;
}

.register-page .password-strength-meter.weak {
    background: linear-gradient(to right, #d63638 33%, #f0f0f1 33%);
}

.register-page .password-strength-meter.medium {
    background: linear-gradient(to right, #dba617 66%, #f0f0f1 66%);
}

.register-page .password-strength-meter.strong {
    background: #00a32a;
}

.register-page .error-message {
    color: #d63638;
    font-size: 0.9em;
    margin-top: 5px;
}

.register-page .form-group.has-error input {
    border-color: #d63638;
}

.register-page .form-group.has-error label {
    color: #d63638;
}

.register-page button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.register-page .login-link {
    color: #002544;
    text-decoration: none;
    font-size: 0.9em;
}

.register-page .login-link:hover {
    color: #135e96;
    text-decoration: underline;
}

/* reCAPTCHA Styles */
.g-recaptcha {
    margin: 20px 0;
}

/* Terms Checkbox Styles */
.checkbox-group {
    margin: 20px 0;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9em;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
}

.checkbox-group a {
    color: #2271b1;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 480px) {
    .register-page .Bcoderdash-box {
        padding: 20px;
    }

    .register-page .form-group {
        margin-bottom: 15px;
    }

    .register-page .password-requirements {
        font-size: 0.8em;
    }

    .register-page .g-recaptcha {
        transform: scale(0.9);
        transform-origin: left center;
    }
}

@media (max-width: 768px) {
    .dashboard-container {
        padding: 1rem;
    }

    .dashboard-widgets {
        grid-template-columns: 1fr;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .welcome-section h1 {
        font-size: 1.5rem;
    }
}

/* Forgot Password Page Styles */
.forgot-password-page .Bcoderdash-box {
    max-width: 400px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.forgot-password-page .form-description {
    color: #868686;
    margin-bottom: 20px;
    font-size: 0.95em;
    line-height: 1.5;
}

.forgot-password-page .Bcoderdash-success {
    background-color: #edfaef;
    border-left: 4px solid #00a32a;
    padding: 12px;
    margin-bottom: 20px;
    color: #1e1e1e;
}

.forgot-password-page .Bcoderdash-error {
    background-color: #fcf0f1;
    border-left: 4px solid #d63638;
    padding: 12px;
    margin-bottom: 20px;
    color: #1e1e1e;
}

.forgot-password-page .form-group {
    margin-bottom: 20px;
}

.forgot-password-page label {
    display: block;
    margin-bottom: 8px;
    color: #1e1e1e;
}

.forgot-password-page input[type="email"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    font-size: 14px;
}

.forgot-password-page input[type="email"]:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: none;
}

.forgot-password-page .form-group.has-error input[type="email"] {
    border-color: #d63638;
}

.forgot-password-page .form-group.has-error .error-message {
    color: #d63638;
    font-size: 12px;
    margin-top: 5px;
}

.forgot-password-page button[type="submit"] {
    width: 100%;
    padding: 10px;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.forgot-password-page button[type="submit"]:hover {
    background: #135e96;
}

.forgot-password-page button[type="submit"]:disabled {
    background: #72aee6;
    cursor: not-allowed;
}

.forgot-password-page .form-links {
    margin-top: 20px;
    text-align: center;
}

.forgot-password-page .login-link {
    color: #248ce2;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password-page .login-link:hover {
    color: #135e96;
    text-decoration: underline;
}

/* Password Reset Form Styles */
.password-input-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #646970;
}

.toggle-password:hover {
    color: #2271b1;
}

.toggle-password .dashicons {
    display: flex;
    font-size: 20px;
}

/* Responsive Styles */
@media (max-width: 480px) {
    .forgot-password-page .Bcoderdash-box {
        margin: 20px;
        padding: 20px;
    }
}

/* Profile Editor Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    width: 90%;
    max-width: 550px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-content h2 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 1.8rem;
    font-weight: 300;
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
}

.close:hover {
    background: #e0e0e0;
    color: #333;
    transform: rotate(90deg);
}

#profile-edit-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: #fff;
}

.form-group input:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1);
}

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
    border-color: #e0e0e0;
    color: #6c757d;
}

.form-group input[readonly]:focus {
    border-color: #e0e0e0;
    box-shadow: none;
}

.form-group small {
    display: block;
    margin-top: 0.4rem;
    color: #666;
    font-size: 0.8rem;
}

.profile-picture-preview {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.profile-picture-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-picture-preview:hover img {
    transform: scale(1.05);
}

input[type="file"] {
    padding: 0.6rem;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    background: #f8f9fa;
    cursor: pointer;
}

input[type="file"]:hover {
    border-color: #2271b1;
    background: #f0f7fc;
}

.form-message {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.form-message.success {
    background-color: #e8f5e9;
    color: #1b5e20;
    border: 1px solid #a5d6a7;
}

.form-message.error {
    background-color: #fdecea;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.submit-button {
    background-color: #2271b1;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.submit-button:hover {
    background-color: #185a8c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 113, 177, 0.2);
}

.submit-button:active {
    transform: translateY(0);
    box-shadow: none;
}

.submit-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .profile-picture-preview {
        width: 100px;
        height: 100px;
    }

    .submit-button {
        padding: 0.7rem 1.2rem;
    }
}

/* Custom Scrollbar for Modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
#profile-edit-form>.submit-button {
    margin-bottom: 20px;
}

/* Comments Widget Styles */
.comments-widget {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comments-widget h3 {
    margin: 0 0 20px;
    color: #333;
    font-size: 1.2em;
}

.comments-list {
    max-height: 500px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.comment-item {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.comment-profile-pic {
    flex-shrink: 0;
}

.comment-profile-pic .profile-pic {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comment-content {
    flex-grow: 1;
    min-width: 0; /* Prevents flex item from overflowing */
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.comment-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-author {
    font-weight: 600;
    color: #333;
}

.comment-status {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8em;
    font-weight: 500;
}

.comment-date {
    font-size: 0.85em;
    color: #666;
}

@media (max-width: 768px) {
    .comment-item {
        flex-wrap: wrap;
    }
    
    .comment-actions {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
}

.comment-item:last-child {
    border-bottom: none;
}
label.comment-separator {
    cursor: pointer;
    height: 26px;
    width: 0;
    text-align: center;
    font-weight: bolder;
    font-size: 30px;
}
.comment-text {
    color: #444;
    line-height: 1.5;
    margin: 0 0 10px;
}

.comment-meta {
    font-size: 0.9em;
    color: #666;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-meta a {
    color: #0073aa;
    text-decoration: none;
}

.comment-meta a:hover {
    color: #00a0d2;
}


.edit-comment {
    background: #f0f0f0;
    color: #333;
}

.edit-comment:hover {
    background: #e0e0e0;
}

.delete-comment {
    background: #dc3232;
    color: #fff;
}

.delete-comment:hover {
    background: #c92626;
}

.edit-comment-text {
    width: 100%;
    min-height: 80px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
    font-family: inherit;
    resize: vertical;
    z-index: 99;
}

.edit-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    z-index: 99;
}

.save-comment {
    background: #46b450;
    color: #fff;
}

.save-comment:hover {
    background: #3d9c46;
}

.cancel-edit {
    background: #666;
    color: #fff;
}

.cancel-edit:hover {
    background: #555;
}

.load-more-comments {
    width: 100%;
    padding: 10px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.load-more-comments:hover {
    background: #005c8a;
}

.load-more-comments:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.message {
    padding: 10px 15px;
    border-radius: 4px;
    margin: 10px 0;
    animation: fadeIn 0.3s ease;
}

.message.success {
    background: #ecf7ed;
    color: #46b450;
    border: 1px solid #46b450;
}

.message.error {
    background: #fbeaea;
    color: #dc3232;
    border: 1px solid #dc3232;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* General Styling */
.comment-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 99;
    position: relative;
}

.comment-profile-pic {
    flex: 0 0 auto;
    width: 50px;
    height: 0;
    border-radius: 50%;
}

.comment-profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 95%;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.comment-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 0 55px;
}

.comment-author {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.comment-status {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
    background-color: #28a745;
    color: #fff;
}

.comment-status.public {
    background-color: #28a745;
}

.comment-status.unlisted {
    background-color: #ffc107;
}

.comment-date {
    font-size: 12px;
    color: #777;
    font-style: italic;
}

.comment-text {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

.comment-meta {
    font-size: 14px;
    color: #777;
}

.comment-meta .comment-post a {
    color: #0073aa;
    text-decoration: none;
}

.comment-meta .comment-post a:hover {
    text-decoration: underline;
}
/* Actions */
.comment-actions {
    display: none;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 0;
    align-items: flex-end;
}

.comment-actions button {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    height: 40px;
	z-index: 99;
}

.comment-actions button:hover {
    background-color: #005b87;
}

.comment-actions .delete-comment {
    background-color: #d9534f;
}

.comment-actions .delete-comment:hover {
    background-color: #c9302c;
}

.unlisted .comment-actions .toggle-status {
    background-color: #28a745;
    color: #fff;
}

.unlisted .comment-actions .toggle-status:hover {
    background-color: #1e7e34;
}
.public .comment-actions .toggle-status {
    background-color: #fdff6f;
    color: #333;
}

.public .comment-actions .toggle-status:hover {
    background-color: #e9e96b;
}
/* Responsive Design */
@media (max-width: 768px) {
    .comment-header {
        flex-direction: column;
    }
}
.profile-details { display: flex; flex-wrap: wrap; border: 1px solid #ddd; border-radius: 8px; padding: 15px; background-color: #f9f9f9; max-width: 800px; margin: 0 auto; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); }.profile-details .profile-picture-large { flex: 1 1 100%; text-align: center; margin-bottom: 15px; }.profile-details .profile-picture-large img { width: 150px; height: 150px; border-radius: 50%; border: 2px solid #ddd; object-fit: cover; }.profile-details .profile-info-details { flex: 1 1 100%; }.profile-details .info-row { display: flex; flex-wrap: wrap; margin-bottom: 10px; flex-direction: column; }.profile-details .info-row label { font-weight: bold; color: #333; flex: 1 1 40%; margin-bottom: 5px; }.profile-details .info-row span { flex: 1 1 60%; color: #555; word-break: break-word; } @media (min-width: 600px) {.profile-details .profile-details { flex-wrap: nowrap; align-items: center; }.profile-details .profile-picture-large { flex: 0 0 200px; margin-right: 20px; margin-bottom: 0; }.profile-details .profile-info-details { flex: 1; }.profile-details .info-row { margin-bottom: 15px; }.profile-details .info-row label { flex: 0 0 30%; }.profile-details .info-row span { flex: 1; } }.comments-list .comment-content:after, .comments-list .comment-content:before {content: none;}.overleyer { height: 100%; background: #0000005e; backdrop-filter: blur(3px); width: 100%; position: absolute; z-index: 9; bottom: 0; left: 0; text-align: center; font-size: 47px; color: #000000; font-weight: bolder; }.dropdown-content {
                display: none;
                position: absolute;
                background-color: #fff;
                min-width: 160px;
                right: 0;
                top: 100%;
                box-shadow: 0 2px 5px rgba(0,0,0,0.2);
                border-radius: 4px;
            }

            .dropdown-content a {
                color: var(--text-color);
                padding: 12px 16px;
                text-decoration: none;
                display: block;
            }

            .dropdown-content a:hover {
                background-color: var(--light-gray);
            }

            #dropdown:checked ~ .dropdown-content {
                display: block;
            }

            .profile-picture {
                border: 2px solid;
                overflow: hidden;
                margin-right: 10px;
            }

            .profile-info {
                white-space: nowrap;
            }

            div#comments * {
                color: #fff !important;
            }