/*
Theme Name: campaign.network
Theme URI: https://campaign.network
Author: campaign.network
Author URI: https://campaign.network
Description: A retro CGA-styled music industry campaign analytics interface
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: campaign-network
*/

/* Import the original CGA styles */
@import 'assets/css/cga-style.css';

/* Campaign logo color fix - dimmed green for less brightness */
.text-center.mb-8 pre {
    color: #2db085 !important;
    opacity: 0.85;
}
.text-center.mb-8 pre:hover {
    color: #2db085 !important;
    opacity: 0.9;
}

/* Fix for footer and dock overlay issues */
body {
    padding-bottom: 40px; /* Add space at the bottom to prevent content from overlapping fixed elements */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Footer Audio Toggle */
.audio-footer-btn {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 3px;
    padding: 4px 6px;
    color: #00ffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 20px;
    position: relative;
    z-index: 10001;
}

.audio-footer-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}

.audio-footer-btn.sound-toggle.muted {
    background: rgba(255, 100, 100, 0.1);
    border-color: rgba(255, 100, 100, 0.3);
    color: rgba(255, 100, 100, 0.8);
}

.audio-footer-btn.sound-toggle.muted:hover {
    background: rgba(255, 100, 100, 0.2);
    border-color: rgba(255, 100, 100, 0.5);
    box-shadow: 0 0 8px rgba(255, 100, 100, 0.3);
}

/* Responsive Audio Toggle System */

/* Desktop: Show footer toggle, hide floating */
.desktop-audio-toggle {
    display: flex;
}

.mobile-audio-toggle {
    display: none;
}

/* Mobile: Hide footer toggle, show floating */
@media (max-width: 768px) {
    .desktop-audio-toggle {
        display: none !important;
    }
    
    .mobile-audio-toggle {
        display: flex !important;
        animation: audioToggleFadeIn 0.3s ease-out;
    }
    
    #floating-audio-toggle .audio-footer-btn {
        min-width: 32px;
        height: 32px;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        background: rgba(0, 0, 0, 0.8);
        border: 2px solid rgba(0, 255, 255, 0.5);
    }
    
    #floating-audio-toggle .audio-footer-btn:hover {
        box-shadow: 0 4px 12px rgba(0, 255, 255, 0.5);
        transform: translateY(-1px);
    }
}

@media (max-width: 480px) {
    #floating-audio-toggle {
        bottom: 16px !important;
        left: 16px !important;
    }
    
    #floating-audio-toggle .audio-footer-btn {
        min-width: 36px;
        height: 36px;
    }
}

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

main, .content-area, .site-content {
    flex: 1;
    z-index: 1; /* Lower z-index than fixed elements */
}

/* Ensure the footer stays on top */
.fixed.bottom-0.left-0.w-full {
    z-index: 9997; /* High z-index to stay above content but below dock */
    background-color: rgba(0, 0, 0, 0.95); /* Slightly opaque background to ensure visibility */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5); /* Add shadow for better visibility */
}

/* BIRDSEYE VIEW FIXES */
#year-view {
  padding: 20px;
  background: rgba(15, 15, 25, 0.9);
  border-radius: 10px;
  margin-bottom: 30px;
}

/* Ensure the column layout is consistent */
#year-view .grid-cols-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

/* Each month column */
#year-view .grid-cols-12 > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: visible !important;
  min-height: 250px !important;
  padding: 8px !important;
}

/* Event container */
#year-view .mt-4.space-y-4 {
  width: 100%;
  height: auto;
  max-height: none;
  overflow-y: visible;
  padding: 5px;
  /* Remove scrolling */
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}

/* Custom scrollbar for webkit browsers - hide it */
#year-view .mt-4.space-y-4::-webkit-scrollbar {
  width: 0;
  display: none;
}

#year-view .mt-4.space-y-4::-webkit-scrollbar-track {
  background: transparent;
}

#year-view .mt-4.space-y-4::-webkit-scrollbar-thumb {
  background: transparent;
}

/* Fix event cards in birdseye view */
#year-view .modern-event-card,
#year-view .event-item {
  width: 100% !important; 
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 0 8px 0 !important;
  padding: 8px !important;
  text-align: center !important;
  background: rgba(20, 20, 30, 0.8) !important;
  border-radius: 8px !important;
  border-left: 3px solid rgba(85, 255, 255, 0.5) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  position: relative !important;
  overflow: visible !important;
  height: auto !important;
  min-height: 110px !important;
  transition: all 0.2s ease !important;
}

#year-view .modern-event-card:hover,
#year-view .event-item:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(0, 200, 255, 0.3) !important;
  background: rgba(30, 30, 50, 0.9) !important;
}

/* Event date pill */
#year-view .date-pill {
  background: rgba(0, 0, 0, 0.4) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 1px 6px !important;
  border-radius: 8px !important;
  font-size: 11px !important;
  margin-bottom: 6px !important;
  display: inline-block !important;
}

/* Event icon container */
#year-view .mb-3.flex.items-center {
  display: flex !important;
  justify-content: center !important;
  margin-bottom: 6px !important;
}

/* Event title */
#year-view .font-medium,
#year-view .text-xl,
#year-view .text-lg {
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
  color: white !important;
  margin-bottom: 6px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
}

/* Fix metadata display */
#year-view .flex.items-center.justify-center,
#year-view .flex.items-center.justify-center.gap-4 {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 6px !important;
  font-size: 10px !important;
  margin-bottom: 4px !important;
}

/* Responsive adjustments for different screen sizes */
@media (max-width: 1400px) {
  #year-view .grid-cols-12 {
    grid-template-columns: repeat(6, 1fr) !important;
  }
  #year-view .grid-cols-12 > div {
    margin-bottom: 20px !important;
  }
}

@media (max-width: 768px) {
  #year-view .grid-cols-12 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 480px) {
  #year-view .grid-cols-12 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Fix for event details modal z-index issues and cleaner appearance */
#event-details-modal,
#timeline-edit-modal {
  z-index: 99999 !important; /* Higher z-index to ensure modals are on top */
  background-color: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(5px) !important;
}

/* Modal content styles */
#event-details-modal .snow-leopard-gradient,
#timeline-edit-modal .snow-leopard-gradient {
  z-index: 100000 !important;
  background: linear-gradient(to bottom, rgba(10, 10, 15, 0.95), rgba(15, 15, 25, 0.95)) !important;
  border: 1px solid rgba(100, 100, 140, 0.3) !important;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7) !important;
}

/* Hide music track section in details modal */
#details-music-container {
  display: none !important;
}

/* Improved status display */
#details-status {
    position: relative !important;
    background-color: rgba(0, 0, 0, 0.4) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(50, 50, 70, 0.5) !important;
    padding: 10px !important;
    text-align: center !important;
    width: 100% !important;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Remove the aggressive hiding of content */
#details-status * {
    display: block !important;
    visibility: visible !important;
    font-size: 16px !important;
    width: auto !important;
    height: auto !important;
    opacity: 1 !important;
    position: relative !important;
    left: auto !important;
}

/* Status colors */
#details-status .confirmed {
    color: #00FF66 !important;
}

#details-status .pending {
    color: #FFAA00 !important;
}

/* Ensure music controls stay behind modals */
.music-track-actions,
.timeline-music-actions,
.music-action-btn,
.timeline-music-play,
.timeline-music-download,
.timeline-music-share,
.cyber-folder-link,
.timeline-folder-link,
.prevent-click-through {
  z-index: 50 !important; /* Lower z-index than modals */
}

/* Apply special class to body when modal is open */
body.modal-open .timeline-music-item,
body.modal-open .music-track-item,
body.modal-open .cyber-folder-link,
body.modal-open .timeline-folder-link {
  z-index: 1 !important;
  pointer-events: none !important;
}

/* Fix for connected folders */
.modern-event-folders {
  position: relative !important;
  z-index: 5 !important;
}

/* Force proper stacking for edit modal */
#timeline-edit-modal {
  transform: translateZ(0) !important;
  isolation: isolate !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

/* Fix edit event modal layout */
#timeline-edit-modal .snow-leopard-gradient {
  max-width: 650px !important;
  width: 100% !important;
  margin: 0 auto !important;
}

/* Clean up date/time display */
#details-datetime {
  font-size: 14px !important;
  padding: 4px 12px !important;
  color: #3af !important;
  display: flex !important;
  align-items: center !important;
}

/* Fix for music player buttons in global context */
#global-music-player-container,
.music-player-popup,
.persistent-player {
  z-index: 9990 !important; /* High but below modals */
}

/* CREATE NEW EVENT STYLING */

/* Timeline Actions */
.timeline-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
    padding: 0 20px;
}

#create-event-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(to bottom, rgba(0, 110, 150, 0.8), rgba(0, 70, 100, 0.8));
    color: #3af !important;
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 12px;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 160, 220, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    font-size: 0.9rem;
    max-width: 180px;
}

#create-event-button:hover {
    background: linear-gradient(to bottom, rgba(0, 130, 170, 0.9), rgba(0, 90, 120, 0.9));
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 150, 255, 0.2);
}

#create-event-button svg {
    color: #3af;
}

/* New Event Section */
#new-event-section {
    background: rgba(15, 15, 25, 0.9);
    border-radius: 10px;
    border: 1px solid rgba(50, 100, 150, 0.3);
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
}

#new-event-section.open {
    display: block;
    opacity: 1;
    transform: translateY(0);
    padding: 20px;
    margin-top: 15px;
    margin-bottom: 30px;
}

/* Improve form field styling */
#new-event-section input[type="text"],
#new-event-section input[type="date"],
#new-event-section input[type="time"],
#new-event-section textarea,
#new-event-section select {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(60, 80, 120, 0.4);
    border-radius: 6px;
    color: #fff;
    padding: 10px 12px;
    transition: all 0.2s ease;
}

/* Compact button styles for the new event form */
#new-event-section .btn-secondary {
    padding: 6px 12px;
    font-size: 0.85rem;
    width: auto;
    min-width: 100px;
    max-width: 150px;
    margin-right: 10px;
}

#new-event-section .btn-primary {
    padding: 8px 16px;
    font-size: 0.9rem;
    width: auto;
    min-width: 120px;
}

/* Make form rows more compact */
#new-event-section .form-row {
    margin-bottom: 15px;
}

#new-event-section .form-group {
    margin-bottom: 10px;
}

/* Make the music and asset wrappers more compact */
#new-event-section .music-track-wrapper,
#new-event-section .asset-folders-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

#new-event-section #selected_music_track_display,
#new-event-section #selected_asset_folders_display {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Style the form labels */
#create-event-container label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #3af;
  margin-bottom: 6px;
  display: block;
}

/* Style the Add Event button */
#add-event-btn {
  background: linear-gradient(to bottom, rgba(0, 150, 220, 0.8), rgba(0, 110, 180, 0.8));
  color: white;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: auto;
  min-width: 120px;
  text-align: center;
  margin-top: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  font-size: 0.9rem;
}

#add-event-btn:hover {
  background: linear-gradient(to bottom, rgba(0, 170, 240, 0.9), rgba(0, 130, 200, 0.9));
  box-shadow: 0 3px 8px rgba(0, 150, 255, 0.3);
}

/* Purple button styles */
.purple-button {
  background: linear-gradient(to bottom, rgba(120, 40, 200, 0.8), rgba(90, 30, 150, 0.8)) !important;
  color: white !important;
  font-weight: 500 !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 12px 20px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  width: 100% !important;
  text-align: center !important;
  margin-bottom: 10px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) !important;
}

.purple-button:hover {
  background: linear-gradient(to bottom, rgba(140, 60, 220, 0.9), rgba(110, 50, 170, 0.9)) !important;
  box-shadow: 0 3px 8px rgba(100, 50, 200, 0.3) !important;
}

/* Event status colors in timeline */
.modern-event-card .modern-event-status.pending,
#list-view .modern-event-card .modern-event-status.pending,
#year-view .modern-event-card .modern-event-status.pending,
.modern-event-card .modern-event-status[class*="pending"] {
    color: #FFAA00 !important;
    font-weight: bold !important;
    background: none !important;
    border: none !important;
}

.modern-event-card .modern-event-status.confirmed,
#list-view .modern-event-card .modern-event-status.confirmed,
#year-view .modern-event-card .modern-event-status.confirmed,
.modern-event-card .modern-event-status[class*="confirmed"] {
    color: #00FF66 !important;
    font-weight: bold !important;
    background: none !important;
    border: none !important;
}

/* Override any other status styles */
.modern-event-card .modern-event-status {
    color: inherit !important;
    background: none !important;
    border: none !important;
}

/* Event Category Highlighting in Birdseye View */
#year-view .modern-event-card {
    transition: all 0.3s ease;
}

#year-view .modern-event-card.highlighted {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 150, 255, 0.3);
    z-index: 10;
    animation: float 2s ease-in-out infinite;
}

#year-view .modern-event-card.dimmed {
    opacity: 0.3;
    filter: grayscale(0.5);
}

@keyframes float {
    0% {
        transform: translateY(-5px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(-5px);
    }
}

/* Category Filter Buttons */
.category-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.category-filter button {
    padding: 8px 16px;
    border-radius: 6px;
    background: rgba(30, 30, 40, 0.6);
    color: #3af;
    border: 1px solid rgba(0, 160, 220, 0.4);
    cursor: pointer;
    transition: all 0.2s ease;
}

.category-filter button:hover {
    background: rgba(40, 40, 50, 0.8);
    transform: translateY(-1px);
}

.category-filter button.active {
    background: linear-gradient(to bottom, rgba(0, 110, 150, 0.8), rgba(0, 70, 100, 0.8));
    color: #fff;
    border-color: rgba(0, 180, 255, 0.6);
    box-shadow: 0 2px 8px rgba(0, 150, 255, 0.2);
}

/* Music Player Styles */
.music-player-popup {
    z-index: 9999 !important;
    transition: none !important; /* Disable transitions during dragging */
    background: rgba(20, 20, 30, 0.95) !important;
    cursor: move !important;
    user-select: none !important;
    position: fixed !important;
}

.music-player-popup.dragging {
    transition: none !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
}

/* Fix for music player artwork */
.music-player-artwork {
    margin-top: 10px;
    border-radius: 4px;
    overflow: hidden;
    max-height: 150px;
    cursor: move !important;
}

.music-player-artwork img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none; /* Prevent image from interfering with drag */
}

/* Make sure controls are still clickable */
.music-player-controls {
    cursor: pointer !important;
    pointer-events: auto !important;
}

.music-player-close {
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* Remove the drag handle styles since we're not using them anymore */
.music-player-drag-handle {
    display: none;
}

/* Highlighted content */
.highlighted-content {
    background-color: #FFFF00 !important; /* Solid bright yellow */
    transition: background-color 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0 2px;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.5), 0 0 5px rgba(255, 255, 0, 0.3) inset !important; /* Glowing effect */
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.3) !important; /* Better text legibility */
}

.highlighted-content:hover {
    background-color: #FFFF33 !important; /* Even brighter on hover */
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.7), 0 0 7px rgba(255, 255, 0, 0.5) inset !important; /* Enhanced glow on hover */
}

/* Remove highlight button */
.remove-highlight-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    background-color: #ff5252;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    display: none;
    z-index: 100;
}

.highlighted-content:hover .remove-highlight-btn {
    display: block;
}

/* Clipboard Save Popup - Cyberpunk Style */
.clipboard-save-popup {
    position: fixed !important;
    z-index: 99999 !important;
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-radius: 16px !important;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5), inset 0 0 1px rgba(255, 255, 255, 0.2) !important;
    width: 340px !important;
    color: #00ff00 !important;
    border: 1px solid #00ff00 !important;
    overflow: hidden !important;
    font-family: monospace !important;
    animation: popup-appear 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.clipboard-save-content {
    background: rgba(0, 0, 0, 0.95) !important;
}

.clipboard-save-header {
    background: rgba(0, 20, 0, 0.95) !important;
    border-bottom: 1px solid #00ff00 !important;
    padding: 18px 18px 10px 18px !important;
}

.clipboard-save-title {
    color: #00ff00 !important;
}

.clipboard-save-preview {
    background: rgba(0, 20, 0, 0.3) !important;
    border: 1px solid rgba(0, 255, 0, 0.2) !important;
    color: #00ff00 !important;
}

.clipboard-save-btn {
    background: rgba(0, 50, 0, 0.5) !important;
    color: #00ff00 !important;
    border: 1px solid #00ff00 !important;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3) !important;
}

.clipboard-save-btn:hover {
    background: rgba(0, 70, 0, 0.7) !important;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5) !important;
}

.clipboard-cancel-btn {
    background: rgba(50, 0, 0, 0.5) !important;
    color: #ff3333 !important;
    border: 1px solid #ff3333 !important;
}

.clipboard-cancel-btn:hover {
    background: rgba(70, 0, 0, 0.7) !important;
}

#highlight-annotation {
    background: rgba(0, 20, 0, 0.3) !important;
    border: 1px solid rgba(0, 255, 0, 0.2) !important;
    color: #00ff00 !important;
}

#highlight-annotation::placeholder {
    color: rgba(0, 255, 0, 0.5) !important;
}

/* Clipboard Section Styles */
.clipboard-section {
    padding: 20px;
}

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

.clipboard-title {
    font-size: 24px;
    font-weight: 600;
}

.clipboard-item-count {
    background-color: #f5f5f5;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
}

.clipboard-empty {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 20px;
}

.clipboard-empty-icon {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 16px;
}

.clipboard-empty-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.clipboard-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.clipboard-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clipboard-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.clipboard-item-content {
    padding: 16px;
}

.clipboard-item-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    max-height: 100px;
    overflow-y: auto;
}

.clipboard-item-source {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.clipboard-item-date {
    font-size: 12px;
    color: #999;
}

.clipboard-item-actions {
    display: flex;
    justify-content: flex-end;
    padding: 12px 16px;
    border-top: 1px solid #eee;
    gap: 8px;
}

.clipboard-item-copy,
.clipboard-item-delete {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.clipboard-item-copy {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.clipboard-item-copy:hover {
    background-color: #e0e0e0;
}

.clipboard-item-delete {
    background-color: #ffebee;
    color: #f44336;
    border: 1px solid #ffcdd2;
}

.clipboard-item-delete:hover {
    background-color: #ffcdd2;
}

/* Cyberpunk Notifications */
.clipboard-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
    color: white;
    font-size: 14px;
    z-index: 99999;
    font-family: monospace;
    animation: notificationGlitch 0.3s ease;
    max-width: 400px;
    clip-path: polygon(
        0% 0%, 
        95% 0%, 
        100% 30%, 
        100% 100%, 
        5% 100%, 
        0% 70%
    );
    border-left: 4px solid;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.clipboard-notification.success {
    background-color: rgba(0, 50, 0, 0.85);
    border-color: #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3), inset 0 0 10px rgba(0, 255, 0, 0.1);
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.7);
}

.clipboard-notification.error {
    background-color: rgba(50, 0, 0, 0.85);
    border-color: #ff0055;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.3), inset 0 0 10px rgba(255, 0, 85, 0.1);
    text-shadow: 0 0 5px rgba(255, 0, 85, 0.7);
}

.clipboard-notification.fade-out {
    animation: notificationFadeOut 0.5s ease forwards;
}

@keyframes notificationGlitch {
    0% { 
        transform: translateY(30px) skewX(10deg); 
        opacity: 0;
        clip-path: polygon(
            0% 0%, 
            95% 0%, 
            100% 0%, 
            100% 100%, 
            0% 100%, 
            0% 100%
        );
    }
    20% { 
        transform: translateY(20px) skewX(-5deg); 
        opacity: 0.3;
    }
    40% { 
        transform: translateY(10px) skewX(2deg); 
        opacity: 0.6;
    }
    60% { 
        transform: translateY(5px) skewX(-1deg); 
        opacity: 0.8;
    }
    100% { 
        transform: translateY(0) skewX(0); 
        opacity: 1; 
        clip-path: polygon(
            0% 0%, 
            95% 0%, 
            100% 30%, 
            100% 100%, 
            5% 100%, 
            0% 70%
        );
    }
}

@keyframes notificationFadeOut {
    0% { 
        transform: translateY(0) skewX(0); 
        opacity: 1;
    }
    30% { 
        transform: translateY(0) skewX(3deg); 
        opacity: 0.8;
    }
    60% { 
        transform: translateY(5px) skewX(-2deg); 
        opacity: 0.4;
    }
    100% { 
        transform: translateY(20px) skewX(5deg); 
        opacity: 0;
    }
}

/* Additional notification styles for cyberpunk effect */
.notification-content {
    position: relative;
    overflow: hidden;
}

.notification-text {
    position: relative;
    z-index: 2;
}

.notification-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        rgba(255, 255, 255, 0.05) 1px,
        transparent 2px
    );
    animation: scanline-anim 8s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes scanline-anim {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100px;
    }
}