/* ================================================
   NOTYFIKACJE TOAST
   ================================================ */

.notification-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    max-width: 400px;
}

.notification-toast.show {
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid #22c55e;
}

.notification-error {
    border-left: 4px solid #dc2626;
}

.notification-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ffffff;
}

.notification-success .notification-icon {
    background: #22c55e;
}

.notification-error .notification-icon {
    background: #dc2626;
}

.notification-message {
    flex: 1;
    color: #374151;
}

.notification-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.notification-close:hover {
    color: #374151;
}

/* ================================================
   WALIDACJA PÓL
   ================================================ */

.input-success {
    border-color: #22c55e !important;
}

.input-error {
    border-color: #dc2626 !important;
}

.input-loading {
    border-color: #f97316 !important;
}

.field-status {
    display: block;
    font-size: 0.875rem;
    margin-top: 4px;
}

.field-status--success {
    color: #22c55e;
}

.field-status--error {
    color: #dc2626;
}

.field-status--loading {
    color: #f97316;
}

/* ================================================
   SIŁA HASŁA
   ================================================ */

.password-strength {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.strength-bar {
    flex: 1;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    width: 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.strength-text {
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 100px;
}

/* ================================================
   PODGLĄD OBRAZÓW
   ================================================ */

.image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.preview-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

/* ================================================
   AKTUALNA GALERIA
   ================================================ */

.form-section .current-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.form-section .gallery-item {
    position: relative;
    width: 120px;
    height: 120px;
}

.form-section .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.remove-gallery-image {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #dc2626;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.2s ease;
}

.remove-gallery-image:hover {
    background: #b91c1c;
    transform: scale(1.1);
}

/* ================================================
   STRONA MOJE KONTO
   ================================================ */

.account-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.account-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.account-section--danger {
    border: 2px solid #fecaca;
    background: #fef2f2;
}

 .form-section .section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.form-section .section-icon {
    font-size: 1.5rem;
}

/* ================================================
   AVATAR
   ================================================ */

.avatar-section {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.current-avatar {
    flex-shrink: 0;
}

.current-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e2e8f0;
}

.avatar-form {
    flex: 1;
    min-width: 250px;
}

/* ================================================
   STATYSTYKI
   ================================================ */

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

.stat-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
}

/* ================================================
   STREFA NIEBEZPIECZNA
   ================================================ */

.danger-zone {
    color: #991b1b;
}

.danger-zone p {
    margin: 0 0 1rem 0;
}

.delete-account-form {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #fecaca;
}

/* ================================================
   SPINNER
   ================================================ */

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ================================================
   RESPONSYWNOŚĆ
   ================================================ */

@media (max-width: 768px) {
    .notification-toast {
        left: 20px;
        right: 20px;
        max-width: none;
    }

    .avatar-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .account-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}


/* ================================================
   FORMULARZ DODAWANIA OBIEKTU - ROZSZERZONY
   ================================================ */

.submit-object-page {
    padding: 3rem 0;
    background: #f8fafc;
    min-height: 100vh;
}

.form-section .page-header {
    margin-bottom: 2rem;
}

.form-section .page-title {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    color: #1a1a2e;
}

.form-section .page-description {
    color: #6b7280;
    margin: 0;
}

/* Sekcje formularza */
.form-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.form-section legend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    padding: 0 0.5rem;
}

.legend-icon {
    font-size: 1.5rem;
}

.form-section .section-description {
    color: #6b7280;
    margin: -0.5rem 0 1.5rem 0;
    font-size: 0.875rem;
}

/* Grid dla wierszy */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group-third {
    grid-column: span 1;
}

.form-group-two-thirds {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .form-row.has-thirds {
        grid-template-columns: 1fr 2fr;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   CHECKBOX GRID - UDOGODNIENIA
   ================================================ */

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.checkbox-card {
    display: block;
    cursor: pointer;
}

.checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox-card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.checkbox-card input:checked+.checkbox-card-content {
    background: #fff7ed;
    border-color: #f97316;
}

.checkbox-card:hover .checkbox-card-content {
    border-color: #cbd5e1;
}

.checkbox-card input:checked+.checkbox-card-content::after {
    content: '✓';
    margin-left: auto;
    color: #f97316;
    font-weight: bold;
}

.checkbox-icon {
    font-size: 1.25rem;
}

.checkbox-label {
    font-size: 0.875rem;
    color: #374151;
}

/* ================================================
   SOCIAL MEDIA ICONS
   ================================================ */

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
    margin-right: 4px;
}

.social-facebook {
    background: #1877f2;
}

.social-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    font-size: 14px;
}

.social-twitter {
    background: #000000;
}

.social-linkedin {
    background: #0a66c2;
    font-size: 10px;
}

.social-youtube {
    background: #ff0000;
}

.social-tiktok {
    background: #000000;
}

/* ================================================
   UPLOAD ZDJĘĆ
   ================================================ */

.file-upload-wrapper {
    position: relative;
}

.file-upload-input {
    display: block;
    width: 100%;
    padding: 1rem;
    border: 2px dashed #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.2s ease;
}

.file-upload-input:hover {
    border-color: #f97316;
    background: #fff7ed;
}

.file-upload-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.file-upload-preview .preview-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

.gallery-preview .preview-image {
    width: 80px;
    height: 80px;
}

/* Dodatkowe zdjęcia grid */
.additional-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 600px) {
    .additional-images-grid {
        grid-template-columns: 1fr;
    }
}

.additional-image-upload {
    position: relative;
}

.image-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    border: 2px dashed #e2e8f0;
    border-radius: 8px;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.image-upload-label:hover {
    border-color: #f97316;
    background: #fff7ed;
}

.image-upload-label.has-file {
    border-color: #22c55e;
    background: #f0fdf4;
}

.upload-icon {
    font-size: 2rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.upload-text {
    font-size: 0.875rem;
    color: #6b7280;
}

.additional-image-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* ================================================
   RATING SELECT
   ================================================ */

.rating-select select {
    font-size: 1rem;
    padding: 0.75rem 1rem;
}

/* ================================================
   FORM ACTIONS
   ================================================ */

.form-actions {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.form-note {
    margin: 1rem 0 0 0;
    color: #6b7280;
    font-size: 0.875rem;
}

/* ================================================
   ALERT SUCCESS ROZSZERZONY
   ================================================ */

.alert-success {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 12px;
}

.alert-icon {
    font-size: 3rem;
}

.alert-content h3 {
    margin: 0 0 0.5rem 0;
    color: #166534;
}

.alert-content p {
    margin: 0 0 1.5rem 0;
    color: #166534;
}

.alert-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .alert-success {
        flex-direction: column;
        text-align: center;
    }

    .alert-actions {
        justify-content: center;
    }
}

/* ================================================
   SPINNER
   ================================================ */

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ================================================
   FORMULARZ - INPUT Z PREFIXEM (SLUG)
   ================================================ */

.input-with-prefix {
    display: flex;
    align-items: stretch;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.input-with-prefix:focus-within {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.input-prefix {
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.875rem;
    white-space: nowrap;
    border-right: 1px solid #e2e8f0;
}

.input-with-prefix input {
    flex: 1;
    border: none !important;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    box-shadow: none !important;
}

.input-with-prefix input:focus {
    outline: none;
}

/* ================================================
   LICZNIK ZNAKÓW
   ================================================ */

.char-counter {
    float: right;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    background: #f1f5f9;
}

/* ================================================
   SOCIAL MEDIA ICONS
   ================================================ */

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
    margin-right: 6px;
    vertical-align: middle;
}

.social-facebook {
    background: #1877f2;
}

.social-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    font-size: 14px;
}

.social-twitter {
    background: #000000;
    font-size: 14px;
}

.social-linkedin {
    background: #0a66c2;
    font-size: 10px;
}

.social-youtube {
    background: #ff0000;
}

.social-tiktok {
    background: #000000;
}

/* ================================================
   FIELD ICONS
   ================================================ */

.field-icon {
    margin-right: 4px;
}

/* ================================================
   CHECKBOX GRID - UDOGODNIENIA Z IKONKAMI
   ================================================ */

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.checkbox-card {
    display: block;
    cursor: pointer;
}

.checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox-card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.checkbox-card:hover .checkbox-card-content {
    border-color: #cbd5e1;
    background: #f1f5f9;
}

.checkbox-card input:checked+.checkbox-card-content {
    background: #fff7ed;
    border-color: #f97316;
}

.checkbox-card input:checked+.checkbox-card-content .checkbox-icon {
    transform: scale(1.2);
}

.checkbox-icon {
    font-size: 1.5rem;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.checkbox-label {
    font-size: 0.875rem;
    color: #374151;
    flex: 1;
}

.checkbox-card input:checked+.checkbox-card-content::after {
    content: '✓';
    margin-left: auto;
    color: #f97316;
    font-weight: bold;
    font-size: 1rem;
}

/* ================================================
   FILE UPLOAD STYLOWANIE
   ================================================ */

.file-upload-wrapper {
    position: relative;
}

.file-upload-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.file-upload-label:hover {
    border-color: #f97316;
    background: #fff7ed;
}

.file-upload-label.has-file {
    border-color: #22c55e;
    background: #f0fdf4;
    border-style: solid;
}

.file-upload-label .upload-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.file-upload-label .upload-text {
    font-size: 0.875rem;
    color: #6b7280;
}

.file-upload-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
}

.file-upload-preview .preview-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
}

.gallery-preview .preview-image {
    width: 80px;
    height: 80px;
}

/* Dodatkowe zdjęcia grid */
.additional-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .additional-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .additional-images-grid {
        grid-template-columns: 1fr;
    }
}

.additional-image-upload {
    position: relative;
}

.additional-image-upload .file-upload-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.image-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 1.5rem 1rem;
    border: 2px dashed #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.image-upload-label:hover {
    border-color: #f97316;
    background: #fff7ed;
}

.image-upload-label.has-file {
    border-color: #22c55e;
    background: #f0fdf4;
    border-style: solid;
}

.image-upload-label .upload-icon {
    font-size: 2rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.image-upload-label .upload-text {
    font-size: 0.75rem;
    color: #6b7280;
}

/* ================================================
   RATING SELECT
   ================================================ */

.rating-select-wrapper {
    max-width: 300px;
}

.rating-select {
    font-size: 1rem;
    padding: 0.75rem 1rem;
}

/* ================================================
   BTN ICON
   ================================================ */

.btn-icon {
    margin-right: 0.5rem;
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 768px) {
    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .input-with-prefix {
        flex-direction: column;
    }

    .input-prefix {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .checkbox-card-content {
        padding: 0.75rem;
    }

    .checkbox-icon {
        font-size: 1.25rem;
    }
}

/**
 * Admin Dashboard Widgets Styles
 * 
 * @package Theme
 * @since 1.0.0
 */

/* ==========================================================================
   PENDING OBJECTS WIDGET
   ========================================================================== */

.pending-widget-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pending-widget-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.pending-widget-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
}

.pending-widget-title {
    font-weight: 600;
    color: #1d2327;
    text-decoration: none;
    flex: 1;
    margin-right: 10px;
}

.pending-widget-title:hover {
    color: #2271b1;
}

.pending-widget-meta {
    font-size: 12px;
    color: #646970;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pending-widget-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.pending-widget-actions a {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.btn-approve {
    background: #00a32a;
    color: #fff !important;
}

.btn-approve:hover {
    background: #008a20;
}

.btn-edit {
    background: #f0f0f1;
    color: #1d2327 !important;
}

.btn-edit:hover {
    background: #dcdcde;
}

.btn-preview {
    background: #f0f0f1;
    color: #1d2327 !important;
}

.btn-preview:hover {
    background: #dcdcde;
}

.pending-count-badge {
    display: inline-block;
    background: #d63638;
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.pending-count-zero {
    background: #00a32a;
}

.pending-widget-empty {
    text-align: center;
    padding: 30px 20px;
    color: #00a32a;
}

.pending-widget-empty-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.pending-widget-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

/* ==========================================================================
   STATS WIDGET
   ========================================================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

@media screen and (max-width: 782px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-box {
    background: #f6f7f7;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #1d2327;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #646970;
}

.stat-box.highlight {
    background: #f0f6fc;
    border: 1px solid #c5d7e8;
}

.stat-box.highlight .stat-value {
    color: #2271b1;
}

.stat-box.warning {
    background: #fcf0e5;
    border: 1px solid #e8c8a8;
}

.stat-box.warning .stat-value {
    color: #bd5d00;
}

.stats-section {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.stats-section h4 {
    margin: 0 0 10px;
    font-size: 13px;
    color: #1d2327;
    font-weight: 600;
}

.stats-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.stats-list li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #f6f7f7;
    font-size: 13px;
}

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

.stats-list .count {
    background: #f0f0f1;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    color: #646970;
    font-weight: 600;
}

/* ==========================================================================
   ACTIVITY WIDGET
   ========================================================================== */

.activity-tabs {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 15px;
}

.activity-tab {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 13px;
    color: #646970;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.activity-tab.active {
    color: #2271b1;
    border-bottom-color: #2271b1;
    font-weight: 600;
}

.activity-tab:hover {
    color: #2271b1;
}

.activity-content {
    display: none;
}

.activity-content.active {
    display: block;
}

.activity-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f6f7f7;
}

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

.activity-avatar {
    flex-shrink: 0;
}

.activity-avatar img {
    border-radius: 50%;
    display: block;
}

.activity-details {
    flex: 1;
    min-width: 0;
}

.activity-title {
    font-weight: 500;
    color: #1d2327;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.activity-title:hover {
    color: #2271b1;
}

.activity-meta {
    font-size: 12px;
    color: #646970;
    line-height: 1.4;
}

.activity-status {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 4px;
}
/* ==========================================================================
.status-pending {
    background: #fcf0e5;
    color: #bd5d00;
}

.status-publish {
    background: #edfaef;
    color: #00a32a;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media screen and (max-width: 600px) {
    .pending-widget-meta {
        flex-direction: column;
        gap: 4px;
    }

    .pending-widget-actions {
        flex-direction: column;
    }

    .pending-widget-actions a {
        text-align: center;
    }
}