/* BuddyPress Scheduled Queue - Frontend Styles */

/* Admin Notices Container - Modern styling */
.bp-sq-admin-notices-section {
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    margin: 20px 0 !important;
}

.bp-sq-admin-notices-header {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #c084fc 100%) !important;
    padding: 16px 20px !important;
    text-align: center !important;
    border: none !important;
}

.bp-sq-admin-notices-title {
    margin: 0 !important;
    font-size: 1.2em !important;
    font-weight: 600 !important;
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

.bp-sq-notices-content {
    padding: 20px !important;
    background: #fff !important;
}

/* Empty State - Simple and clean */
.bp-sq-empty-state {
    text-align: center !important;
    padding: 60px 20px !important;
    color: #6b7280 !important;
    background: none !important;
    border: none !important;
}

.bp-sq-empty-state h3 {
    margin: 0 !important;
    font-size: 1.1em !important;
    color: #9ca3af !important;
    font-weight: 500 !important;
}

/* Notice Container */
.bp-sq-notices-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Notice Cards - Vibrant modern styling */
.bp-sq-notice {
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 6px !important;
    padding: 8px !important;
    margin-bottom: 8px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.2s ease !important;
}

.bp-sq-notice:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.bp-sq-notice.notice-unread {
    border: 2px solid #8b5cf6 !important;
    background: #fff !important;
    box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.1), 0 4px 6px -1px rgba(139, 92, 246, 0.1), 0 2px 4px -1px rgba(139, 92, 246, 0.06) !important;
}

.bp-sq-notice.notice-unread:hover {
    box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.2), 0 8px 15px -3px rgba(139, 92, 246, 0.2), 0 4px 6px -2px rgba(139, 92, 246, 0.1) !important;
}

.bp-sq-notice.notice-unread .bp-sq-notice-header {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 50%, #ede9fe 100%) !important;
    border-bottom: 1px solid #c4b5fd !important;
}

.bp-sq-notice.notice-read {
    border: 1px solid #e5e7eb !important;
    background: #fff !important;
}

.bp-sq-notice h3 {
    margin-top: 0;
    color: #111827 !important;
}

.notice-content {
    margin: 15px 0;
    padding: 12px 16px;
    overflow: hidden;
}

.notice-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px 0;
}

.notice-content p {
    margin: 1em 0 !important;
    color: #374151 !important;
}

/* Mark as Read Button - Modern vibrant styling with !important */
.mark-read-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    font-weight: 500 !important;
    font-size: 0.9em !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 1px 3px rgba(139, 92, 246, 0.4) !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.mark-read-btn:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 6px rgba(139, 92, 246, 0.4) !important;
    color: #fff !important;
    text-decoration: none !important;
}

.mark-read-btn:focus {
    background: linear-gradient(135deg, #7c3aed 0%, #9333ea 100%) !important;
    color: #fff !important;
    outline: 2px solid #8b5cf6 !important;
    outline-offset: 2px !important;
}

.bp-sq-queue-flex {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.bp-sq-queue-col {
    flex: 1 1 320px;
    min-width: 280px;
}
.bp-sq-queue-table {
    width: 100%;
    max-width: 600px;
    margin: 20px 0;
    border-collapse: collapse;
}
@media (max-width: 900px) {
    .bp-sq-queue-flex {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 600px) {
    .bp-sq-notice-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .bp-sq-notice-meta {
        font-size: 0.85em;
    }
}

/* Notice Tab Styling - Modern */
.bp-sq-notice-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer !important;
    user-select: none !important;
    background: #f9fafb !important;
    border-bottom: 1px solid #e5e7eb !important;
    padding: 10px 12px !important;
    border-radius: 6px 6px 0 0 !important;
    transition: all 0.2s ease !important;
    gap: 8px !important;
}

.bp-sq-notice-main {
    display: flex !important;
    align-items: baseline !important;
    flex: 1 !important;
    gap: 12px !important;
    min-width: 0 !important;
}

.bp-sq-notice-title {
    margin: 0 !important;
    flex: 0 1 auto !important;
    min-width: 0 !important;
    font-size: 1.1em !important;
    font-weight: 600 !important;
    color: #111827 !important;
    font-family: inherit !important;
}

.bp-sq-notice-meta {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
    flex: 0 0 auto !important;
}

.bp-sq-notice-date {
    color: #6b7280 !important;
    font-size: 0.9em !important;
    font-weight: normal !important;
}

.bp-sq-notice-indicator {
    display: none;
}

.bp-sq-notice-header:hover, .bp-sq-notice-header:focus {
    background: #f3f4f6 !important;
}

/* Toggle Button - Modern vibrant styling */
.bp-sq-notice-toggle {
    font-size: 1.4em !important;
    line-height: 1 !important;
    color: #8b5cf6 !important;
    font-weight: bold !important;
    background: #fff !important;
    border: 2px solid #8b5cf6 !important;
    border-radius: 50% !important;
    width: 28px !important;
    height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.bp-sq-notice-header:hover .bp-sq-notice-toggle,
.bp-sq-notice-header:focus .bp-sq-notice-toggle {
    background: #8b5cf6 !important;
    color: #fff !important;
    transform: scale(1.05) !important;
}

.bp-sq-notice.open .notice-content {
    display: block !important;
}

.bp-sq-notice-action {
    margin-top: 16px !important;
    text-align: right !important;
}

.bp-sq-notice-header.notice-read {
    background: #f9fafb !important;
    border-bottom: 1px solid #e5e7eb !important;
}

 