* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f5f7fa;
    min-height: 100vh;
    color: #333;
    transition: all 0.3s ease;
    margin: 0;
    padding: 20px;
}

body.dark {
    background: #2c3e50;
    color: #ecf0f1;
}

.app-container {
    display: flex;
    min-height: calc(100vh - 40px);
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

body.dark .app-container {
    background: #34495e;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Sidebar Styles */
.sidebar {
    width: 280px;
    background: #f8f9fa;
    padding: 20px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

body.dark .sidebar {
    background: #2c3e50;
    border-right: 1px solid #34495e;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    transition: color 0.3s ease;
}

body.dark .logo {
    color: #ecf0f1;
}

.logo i {
    color: #667eea;
    font-size: 20px;
}

.collapse-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.collapse-btn:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.main-menu h4 {
    font-size: 11px;
    color: #999;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

body.dark .main-menu h4 {
    color: #95a5a6;
}

.menu-list {
    list-style: none;
    margin-bottom: 30px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    position: relative;
}

.menu-item:hover {
    background: rgba(102, 126, 234, 0.1);
}

.menu-item.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

body.dark .menu-item {
    color: #bdc3c7;
}

body.dark .menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.menu-item i {
    font-size: 16px;
    width: 20px;
}

.status {
    margin-left: auto;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    background: #ff4757;
    color: white;
    display: none; /* Ocultar ya que no tenemos elementos con status */
}

.status.off {
    background: #ff4757;
}

.lists-section {
    flex-grow: 1;
    margin-bottom: 20px; /* Añadir margen ya que no hay upgrade section */
}

.lists-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.lists-header span {
    font-size: 11px;
    color: #999;
    font-weight: 600;
    letter-spacing: 1px;
}

body.dark .lists-header span {
    color: #95a5a6;
}

.add-btn {
    background: #667eea;
    border: none;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.project-category {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

body.dark .project-category {
    color: #bdc3c7;
}

.project-category i:first-child {
    font-size: 12px;
}

.project-actions {
    margin-left: auto;
    display: flex;
    gap: 8px;
}

.project-actions i {
    cursor: pointer;
    color: #999;
    font-size: 12px;
}

.project-items {
    list-style: none;
    margin-left: 20px;
    margin-bottom: 20px;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #666;
    transition: all 0.2s ease;
    padding: 5px 8px;
    margin: 2px 0;
    cursor: pointer;
    position: relative;
}

body.dark .project-item {
    color: #bdc3c7;
}

.project-item i {
    font-size: 8px;
}

.sidebar-footer {
    margin-bottom: 20px;
}

.theme-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #666;
}

body.dark .theme-toggle {
    color: #bdc3c7;
}

.toggle-switch {
    position: relative;
    width: 40px;
    height: 20px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 20px;
    transition: 0.4s;
}

.toggle-switch label:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
}

.toggle-switch input:checked + label {
    background-color: #667eea;
}

.toggle-switch input:checked + label:before {
    transform: translateX(20px);
}

/* Main Content Styles */
.main-content {
    flex-grow: 1;
    padding: 40px;
    background: white;
    transition: all 0.3s ease;
}

body.dark .main-content {
    background: #34495e;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.greeting h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

body.dark .greeting h1 {
    color: #ecf0f1;
}

.greeting p {
    color: #666;
    font-size: 16px;
    transition: color 0.3s ease;
}

body.dark .greeting p {
    color: #bdc3c7;
}

.header-info {
    text-align: right;
}

body.dark .header-info {
    color: #bdc3c7;
}

.time-info {
    font-size: 14px;
    color: #666;
}

body.dark .time-info {
    color: #bdc3c7;
}

.current-time {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.time-display {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

body.dark .time-display {
    color: #ecf0f1;
}

.date-display {
    font-size: 12px;
    color: #999;
}

body.dark .date-display {
    color: #95a5a6;
}

.today-tasks {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

body.dark .today-tasks {
    background: #2c3e50;
    border: 1px solid #34495e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tasks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.tasks-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

body.dark .tasks-header h2 {
    color: #ecf0f1;
}

.task-controls {
    display: flex;
    gap: 10px;
}

.focus-mode, .ai-assist {
    background: none;
    border: 1px solid #e1e5e9;
    padding: 8px 16px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

body.dark .focus-mode {
    border-color: #555;
    color: #bdc3c7;
}

.focus-mode:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: #667eea;
    color: #667eea;
}

.task-list {
    margin-bottom: 25px;
}

.task-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(225, 229, 233, 0.5);
}

body.dark .task-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.task-item:last-child {
    border-bottom: none;
}

.task-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    cursor: pointer;
}

.task-text {
    flex-grow: 1;
    font-size: 15px;
    color: #333;
    transition: color 0.3s ease;
}

body.dark .task-text {
    color: #ecf0f1;
}

.task-item input:checked + .task-text {
    text-decoration: line-through;
    color: #999;
}

.task-priority {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 15px;
}

.task-priority.high {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
}

.task-priority.medium {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.task-priority.low {
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
}

.priority-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.task-menu {
    color: #999;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

body.dark .task-menu {
    color: #95a5a6;
}

body.dark .task-menu:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #667eea;
}

.task-actions {
    display: flex;
    gap: 15px;
}

.finish-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.finish-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.add-task-btn {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

body.dark .add-task-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
}

body.dark .add-task-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Modal for adding tasks */
.task-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
}

.task-modal.show {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
    position: relative;
}

body.dark .modal-content {
    background: #2c3e50;
    color: #ecf0f1;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

body.dark .modal-title {
    color: #ecf0f1;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

body.dark .form-label {
    color: #ecf0f1;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

body.dark .form-input {
    background: #34495e;
    border-color: #34495e;
    color: #ecf0f1;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.priority-selector {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.priority-option {
    flex: 1;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

body.dark .priority-option {
    background: #34495e;
    border-color: #34495e;
    color: #ecf0f1;
}

.priority-option.selected {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.priority-option .priority-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 auto 5px;
}

.priority-option.high .priority-dot {
    background: #e74c3c;
}

.priority-option.medium .priority-dot {
    background: #f39c12;
}

.priority-option.low .priority-dot {
    background: #2ecc71;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.modal-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.modal-btn-cancel {
    background: #f8f9fa;
    color: #666;
}

body.dark .modal-btn-cancel {
    background: #34495e;
    color: #95a5a6;
}

.modal-btn-cancel:hover {
    background: #e9ecef;
}

body.dark .modal-btn-cancel:hover {
    background: #2c3e50;
}

.modal-btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.modal-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Confirmation Modal Styles */
.confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    animation: fadeIn 0.3s ease-out;
}

.confirmation-modal.show {
    display: flex;
}

.confirmation-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
}

body.dark .confirmation-content {
    background: #2c3e50;
    color: #ecf0f1;
}

.confirmation-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.confirmation-icon.warning {
    color: #f39c12;
}

.confirmation-icon.success {
    color: #2ecc71;
}

.confirmation-icon.error {
    color: #e74c3c;
}

.confirmation-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

body.dark .confirmation-title {
    color: #ecf0f1;
}

.confirmation-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

body.dark .confirmation-message {
    color: #bdc3c7;
}

.confirmation-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.confirmation-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    min-width: 100px;
}

.confirmation-btn-cancel {
    background: #f8f9fa;
    color: #666;
}

body.dark .confirmation-btn-cancel {
    background: #34495e;
    color: #95a5a6;
}

.confirmation-btn-cancel:hover {
    background: #e9ecef;
}

body.dark .confirmation-btn-cancel:hover {
    background: #2c3e50;
}

.confirmation-btn-confirm {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.confirmation-btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.confirmation-btn-danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.confirmation-btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation for context menu */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional animations */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(-5px);
    }
}

/* Improved hover effects */
.task-item:hover {
    background: rgba(102, 126, 234, 0.02);
    transform: translateX(3px);
}

body.dark .task-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.project-item:hover {
    background: rgba(102, 126, 234, 0.05);
    padding-left: 15px;
    transition: all 0.2s ease;
}

body.dark .project-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.add-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.collapse-btn:hover {
    transform: rotate(180deg);
}

/* Loading animation for tasks */
.task-item.loading {
    opacity: 0.5;
    pointer-events: none;
}

.task-checkbox:checked {
    animation: bounce 0.6s ease;
}

/* Focus mode styles */
.focus-mode.active {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    color: white !important;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Project category animations */
.project-category i {
    transition: transform 0.3s ease;
}

.project-category.collapsed i {
    transform: rotate(-90deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-container {
        flex-direction: column;
        border-radius: 0;
        min-height: 100vh;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
    }
    
    .main-content {
        padding: 20px;
    }
    
    .main-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-info {
        text-align: left;
    }
    
    .impact-score {
        flex-direction: column;
        gap: 15px;
    }
      .task-controls {
        flex-direction: column;
        width: 100%;
    }
    
    .focus-mode {
        width: 100%;
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.task-item, .today-tasks {
    animation: fadeIn 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.5);
}

/* Project and List Modals */
.project-modal, .list-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
}

.project-modal.show, .list-modal.show {
    display: flex;
}

.project-item:hover {
    background: rgba(102, 126, 234, 0.1);
    border-radius: 8px;
    transform: translateX(3px);
}

.project-item .delete-project {
    opacity: 0;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
    cursor: pointer;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.project-item:hover .delete-project {
    opacity: 1;
}

.delete-project:hover {
    background: rgba(231, 76, 60, 0.1);
}

.color-selector {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.color-option.selected {
    border-color: #667eea;
    transform: scale(1.1);
}

.color-option:hover {
    transform: scale(1.05);
}

/* Lists section styles */
.lists-section {
    margin-bottom: 20px;
}

.lists-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    color: #666;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

body.dark .lists-header {
    color: #95a5a6;
}

.lists-header .add-btn {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.lists-header .add-btn:hover {
    background: #667eea;
    color: white;
    transform: scale(1.1);
}

.custom-lists {
    margin-top: 15px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 3px;
    position: relative;
}

.list-item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(3px);
}

.list-item .list-icon {
    font-size: 14px;
    color: #667eea;
}

.list-item .list-name {
    flex-grow: 1;
    font-size: 14px;
    color: #333;
}

body.dark .list-item .list-name {
    color: #ecf0f1;
}

.list-item .delete-list {
    opacity: 0;
    color: #e74c3c;
    cursor: pointer;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 3px;
    transition: all 0.2s ease;
}

.list-item:hover .delete-list {
    opacity: 1;
}

.delete-list:hover {
    background: rgba(231, 76, 60, 0.1);
}

.lists-toggle {
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.lists-toggle:hover {
    color: #667eea;
}

.lists-content {
    margin-top: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lists-content.collapsed {
    max-height: 0;
    margin-top: 0;
}

.lists-content.expanded {
    max-height: 500px;
}

/* Project actions menu styles */
.project-actions-menu {
    position: absolute;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 180px;
    font-size: 14px;
    overflow: hidden;
    animation: fadeIn 0.2s ease-out;
}

body.dark .project-actions-menu {
    background: #2c3e50;
    border-color: #34495e;
    color: #ecf0f1;
}

.project-actions-menu .menu-item {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.project-actions-menu .menu-item:hover {
    background: #f8f9fa;
    color: #667eea;
}

body.dark .project-actions-menu .menu-item:hover {
    background: #34495e;
    color: #667eea;
}

.project-actions-menu .menu-item.delete-item {
    color: #e74c3c;
}

.project-actions-menu .menu-item.delete-item:hover {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.project-actions-menu .menu-divider {
    height: 1px;
    background: #e9ecef;
    margin: 4px 0;
}

body.dark .project-actions-menu .menu-divider {
    background: #34495e;
}

.project-actions {
    opacity: 0;
    transition: all 0.2s ease;
}

.project-category:hover .project-actions {
    opacity: 1;
}

.project-actions i {
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.project-actions i:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}
