/* Focussio - Cosmic Focus Timer Styles */

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e6ed;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation;
}

/* Main app container with proper grid layout */
.app-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: 
        "timer timer"
        "tasks right-column"
        "stats stats";
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
}

/* Timer container spans both columns */
.timer-container {
    grid-area: timer;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Task list container in left column */
.task-list-container {
    grid-area: tasks;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    height: fit-content;
    min-height: 400px;
}

/* Right column container for projects and stats */
.right-column {
    grid-area: right-column;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Projects section */
.projects-section,
.star-systems-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    height: fit-content;
    min-height: 400px;
}

/* Mission Log section */
.mission-log-section {
    grid-area: stats;
    /* Remove all styling - inherit from timer container */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.mission-log-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f0f0f0;
    margin: 0;
    background: linear-gradient(135deg, #4fc3f7, #29b6f6, #7b1fa2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-log-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.mission-log-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.mission-log-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.mission-log-card h4 {
    font-size: 0.9rem;
    color: #64b5f6;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #f0f0f0;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(224, 230, 237, 0.6);
    font-weight: 500;
}

.recent-sessions {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.recent-sessions h4 {
    font-size: 1.1rem;
    color: #64b5f6;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.sessions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 200px;
    overflow-y: auto;
}

.session-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.session-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.session-task {
    font-size: 0.9rem;
    color: #f0f0f0;
    font-weight: 500;
}

.session-time {
    font-size: 0.75rem;
    color: rgba(224, 230, 237, 0.6);
}

.session-duration {
    font-size: 0.85rem;
    color: #4fc3f7;
    font-weight: 600;
    background: rgba(79, 195, 247, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
}

.empty-sessions {
    text-align: center;
    padding: 30px 20px;
    color: rgba(224, 230, 237, 0.5);
    font-style: italic;
}

/* Header styles for all sections */
.task-header,
.projects-header,
.star-systems-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Standardize all section headings - consistent font size */
.task-header h3,
.projects-header h3,
.star-systems-header h3,
.mission-log-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f0f0f0;
    margin: 0;
    background: linear-gradient(135deg, #4fc3f7, #29b6f6, #7b1fa2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.task-title-area,
.projects-title-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.task-header-actions,
.projects-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* Timer display */
#display {
    font-size: 4rem;
    font-weight: 700;
    color: #f0f0f0;
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(240, 240, 240, 0.3);
}

/* Progress bar */
#progressBar {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
    appearance: none;
}

#progressBar::-webkit-progress-bar {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

#progressBar::-webkit-progress-value {
    background: linear-gradient(90deg, #4fc3f7, #29b6f6);
    border-radius: 4px;
}

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

.header-row h2 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4fc3f7, #29b6f6, #7b1fa2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Current task spotlight */
.current-task-spotlight {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.spotlight-label {
    font-size: 0.8rem;
    color: #64b5f6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.current-task-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #f0f0f0;
    min-height: 1.5em;
    outline: none;
    cursor: text;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 8px 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.current-task-text:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(100, 181, 246, 0.3);
}

.current-task-text:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #4fc3f7;
    box-shadow: 0 0 0 2px rgba(79, 195, 247, 0.2);
}

.current-task-text.placeholder {
    color: rgba(224, 230, 237, 0.5);
    font-style: italic;
    cursor: pointer;
}

/* Mission Creator */
.mission-creator {
    background: rgba(255, 255, 255, 0.08);
    border: 2px dashed rgba(79, 195, 247, 0.4);
    border-radius: 15px;
    padding: 25px;
    margin: 20px 0;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-creator:hover {
    border-color: rgba(79, 195, 247, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

.mission-creator-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f0f0f0;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-input-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
}

.mission-time-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

#missionNameInput {
    flex: 1;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    color: #e0e6ed;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

#missionNameInput:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #4fc3f7;
    box-shadow: 0 0 0 2px rgba(79, 195, 247, 0.2);
}

#missionNameInput::placeholder {
    color: rgba(224, 230, 237, 0.5);
}

#missionTimeInput {
    width: 70px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px 10px;
    color: #e0e6ed;
    font-size: 1rem;
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
}

#missionTimeInput:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #4fc3f7;
    box-shadow: 0 0 0 2px rgba(79, 195, 247, 0.2);
}

.time-label {
    color: #64b5f6;
    font-size: 0.9rem;
    font-weight: 500;
}

.create-mission-btn {
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
    margin: 0 auto;
}

.create-mission-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
    background: linear-gradient(135deg, #29b6f6, #4fc3f7);
}

/* Button styles */
.button-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.button-row {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.primary-btn,
.launch-btn {
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    border: none;
    border-radius: 12px;
    padding: 15px 25px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.primary-btn:hover,
.launch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.4);
}

.focus-mode-btn {
    background: linear-gradient(135deg, #7b1fa2, #8e24aa);
    box-shadow: 0 4px 15px rgba(123, 31, 162, 0.3);
}

.focus-mode-btn:hover {
    box-shadow: 0 6px 20px rgba(123, 31, 162, 0.4);
}

button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 20px;
    color: #e0e6ed;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
}

button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Collapse buttons */
.collapse-btn {
    background: none;
    border: none;
    color: #64b5f6;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    transition: transform 0.3s ease;
}

.collapse-btn.collapsed {
    transform: rotate(-90deg);
}

/* Add buttons */
.add-task-btn,
.add-project-btn,
.add-star-system-btn {
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(79, 195, 247, 0.2);
}

.add-task-btn:hover,
.add-project-btn:hover,
.add-star-system-btn:hover {
    background: linear-gradient(135deg, #29b6f6, #4fc3f7);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(79, 195, 247, 0.4);
}

/* Quick add containers - FIXED LAYOUT */
.quick-add-container {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-add-input-container {
    display: flex;
    gap: 8px;
    align-items: center;
}

#quickAddInput,
#quickAddProjectInput {
    flex: 1;
    min-width: 0; /* Prevents flex item from overflowing */
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 12px;
    color: #e0e6ed;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

#quickAddInput:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #4fc3f7;
    box-shadow: 0 0 0 2px rgba(79, 195, 247, 0.2);
}

#quickAddProjectInput:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #7b1fa2;
    box-shadow: 0 0 0 2px rgba(123, 31, 162, 0.2);
}

#quickAddInput::placeholder,
#quickAddProjectInput::placeholder {
    color: rgba(224, 230, 237, 0.5);
}

#quickAddTime {
    width: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 8px;
    color: #e0e6ed;
    font-size: 0.9rem;
    text-align: center;
    outline: none;
    transition: all 0.3s ease;
}

#quickAddTime:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #4fc3f7;
    box-shadow: 0 0 0 2px rgba(79, 195, 247, 0.2);
}

#quickAddProjectPriority {
    width: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px 8px;
    color: #e0e6ed;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
}

#quickAddProjectPriority:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #7b1fa2;
    box-shadow: 0 0 0 2px rgba(123, 31, 162, 0.2);
}

.quick-add-btn {
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    border: none;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(79, 195, 247, 0.2);
    flex-shrink: 0;
}

.quick-add-btn:hover {
    background: linear-gradient(135deg, #29b6f6, #4fc3f7);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(79, 195, 247, 0.4);
}

/* Settings overlay */
.settings-overlay {
    position: fixed;
    top: 80px;
    right: 20px;
    background: rgba(15, 15, 35, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 240px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
}

.settings-overlay .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: #f44336;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    min-height: auto;
}

.settings-overlay .close-btn:hover {
    background: rgba(244, 67, 54, 0.3);
    transform: scale(1.1);
}

.settings-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex;
}

.setting-item {
    margin-bottom: 12px;
}

.setting-label {
    display: block;
    font-size: 0.85rem;
    color: #b0b0b0;
    margin-bottom: 4px;
}

.setting-item input,
.setting-item select {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 6px 10px;
    color: #e0e6ed;
    font-size: 0.85rem;
    min-height: 36px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.setting-description {
    font-size: 0.75rem;
    color: rgba(224, 230, 237, 0.7);
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Toggle switch styles */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background: #e0e6ed;
    border-radius: 50%;
    transition: all 0.3s ease;
}

input:checked + .toggle-slider {
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    border-color: #4fc3f7;
}

input:checked + .toggle-slider:before {
    transform: translateX(22px);
    background: white;
}

/* Feedback button in settings */
.feedback-setting {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
    margin-top: 8px;
}

.feedback-btn {
    width: 100%;
    background: linear-gradient(135deg, #7b1fa2, #8e24aa);
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(123, 31, 162, 0.2);
}

.feedback-btn:hover {
    background: linear-gradient(135deg, #8e24aa, #9c27b0);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(123, 31, 162, 0.3);
}

/* Feedback overlay */
.feedback-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-overlay.hidden {
    display: none;
}

.feedback-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
}

.feedback-content .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    color: #f44336;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    min-height: auto;
}

.feedback-content .close-btn:hover {
    background: rgba(244, 67, 54, 0.3);
    transform: scale(1.1);
}

.feedback-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #7b1fa2, #8e24aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.feedback-content p {
    color: rgba(224, 230, 237, 0.8);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.5;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feedback-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feedback-label {
    font-size: 0.9rem;
    color: #b0b0b0;
    font-weight: 500;
}

.feedback-select,
.feedback-input,
.feedback-textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 15px;
    color: #e0e6ed;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
    resize: vertical;
}

.feedback-select:focus,
.feedback-input:focus,
.feedback-textarea:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #7b1fa2;
    box-shadow: 0 0 0 2px rgba(123, 31, 162, 0.2);
}

.feedback-textarea {
    min-height: 120px;
    line-height: 1.5;
}

.feedback-textarea::placeholder,
.feedback-input::placeholder {
    color: rgba(224, 230, 237, 0.5);
}

.feedback-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.feedback-submit {
    background: linear-gradient(135deg, #7b1fa2, #8e24aa);
    box-shadow: 0 4px 15px rgba(123, 31, 162, 0.3);
}

.feedback-submit:hover {
    background: linear-gradient(135deg, #8e24aa, #9c27b0);
    box-shadow: 0 6px 20px rgba(123, 31, 162, 0.4);
}

/* Gear button */
.gear-button {
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.2), rgba(100, 181, 246, 0.1));
    border: 1px solid rgba(100, 181, 246, 0.3);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    color: #4fc3f7;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(100, 181, 246, 0.2);
}

.gear-button:hover {
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.3), rgba(100, 181, 246, 0.2));
    border-color: rgba(100, 181, 246, 0.5);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(100, 181, 246, 0.3);
    color: #29b6f6;
}

.gear-button svg {
    transition: transform 0.5s ease;
}

.gear-button:hover {
    transform: scale(1.05) rotate(180deg);
}

/* Task items */
.task-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.task-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.task-item.current-task {
    border-color: #4fc3f7;
    background: rgba(79, 195, 247, 0.1);
    box-shadow: 0 0 20px rgba(79, 195, 247, 0.2);
}

.task-item .task-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 0;
    border: none;
    cursor: default;
}

.task-title {
    font-size: 1rem;
    font-weight: 500;
    color: #f0f0f0;
}

.task-priority {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 500;
}

.priority-high {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.priority-medium {
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
}

.priority-low {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.task-meta {
    margin-bottom: 10px;
}

.task-time {
    font-size: 0.8rem;
    color: #64b5f6;
    display: flex;
    align-items: center;
    gap: 4px;
}

.task-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.start-btn {
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.complete-btn {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.remove-btn {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 6px;
    padding: 6px 12px;
    color: #f44336;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Empty states - ENHANCED */
.empty-task-state {
    text-align: center;
    padding: 40px 20px;
    color: rgba(224, 230, 237, 0.6);
    font-style: italic;
}

.empty-task-state::before {
    content: "🚀";
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Task list content */
.task-list-content,
.projects-content {
    padding: 0;
}

.task-list {
    padding: 15px 20px;
}

/* Project items */
.project-item,
.star-system-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

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

.project-name,
.star-system-name {
    font-size: 1rem;
    font-weight: 500;
    color: #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.star-system-priority {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 500;
}

.star-system-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.add-milestone-btn {
    background: linear-gradient(135deg, #7b1fa2, #8e24aa);
    border: none;
    border-radius: 6px;
    padding: 4px 8px;
    color: white;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.delete-star-system-btn {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 6px;
    padding: 4px 8px;
    color: #f44336;
    font-size: 1rem;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-actions {
    display: flex;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    border: none;
    border-radius: 6px;
    padding: 4px 8px;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
}

.btn-icon {
    background: none;
    border: none;
    color: #64b5f6;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
}

.delete-btn {
    color: #f44336;
}

.project-progress,
.star-system-progress {
    margin-bottom: 10px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #7b1fa2, #8e24aa);
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.8rem;
    color: #8e24aa;
    display: flex;
    justify-content: space-between;
}

/* Milestone items */
.milestones-list {
    padding: 10px 0;
}

.milestone-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.milestone-item.completed {
    opacity: 0.6;
}

.milestone-item.completed .milestone-text {
    text-decoration: line-through;
}

.milestone-content {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.drag-handle {
    color: rgba(224, 230, 237, 0.3);
    cursor: grab;
    font-size: 0.8rem;
}

.milestone-checkbox {
    margin: 0;
}

.milestone-text {
    flex: 1;
    background: none;
    border: none;
    color: #e0e6ed;
    font-size: 0.9rem;
    outline: none;
}

.milestone-actions {
    display: flex;
    gap: 4px;
}

.remove-milestone-btn {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 4px;
    padding: 2px 6px;
    color: #f44336;
    font-size: 0.8rem;
    cursor: pointer;
}

/* Focus mode overlay */
.focus-mode-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.focus-mode-overlay.hidden {
    display: none;
}

.focus-content {
    text-align: center;
    max-width: 600px;
    padding: 40px;
}

.focus-timer {
    font-size: 6rem;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(240, 240, 240, 0.3);
}

.focus-task {
    font-size: 1.5rem;
    color: #64b5f6;
    margin-bottom: 40px;
}

.focus-controls {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.focus-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 25px;
    color: #e0e6ed;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.focus-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.focus-btn.secondary {
    background: rgba(244, 67, 54, 0.1);
    border-color: rgba(244, 67, 54, 0.3);
    color: #f44336;
}

/* Success overlay */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-overlay.hidden {
    display: none;
}

.success-content {
    text-align: center;
    max-width: 500px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
}

.success-content .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    color: #f44336;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    min-height: auto;
}

.success-content .close-btn:hover {
    background: rgba(244, 67, 54, 0.3);
    transform: scale(1.1);
}

.success-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4fc3f7, #29b6f6, #7b1fa2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-content p {
    font-size: 1.1rem;
    color: rgba(224, 230, 237, 0.8);
    margin-bottom: 30px;
}

.success-animation {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 1s ease-in-out infinite alternate;
}

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

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 25px;
    color: #e0e6ed;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Form styles */
.add-task-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.form-row input,
.form-row select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 8px 12px;
    color: #e0e6ed;
    font-size: 0.9rem;
}

.form-row input {
    flex: 1;
}

.form-actions {
    display: flex;
    gap: 8px;
}

/* Task and project counts */
.task-count,
.projects-count {
    font-size: 0.8rem;
    color: #64b5f6;
    background: rgba(100, 181, 246, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

/* Responsive design */
@media (max-width: 768px) {
    /* Fix button content alignment on mobile */
    .primary-btn,
    .launch-btn,
    .focus-mode-btn,
    button {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .mission-input-row {
        flex-direction: column;
        gap: 15px;
    }
    
    #missionNameInput {
        max-width: 100%;
        width: 100%;
    }
    
    .mission-time-container {
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: flex-start;
    }
    
    #missionTimeInput {
        width: 80px;
        flex-shrink: 0;
    }
    
    .time-label {
        flex-shrink: 0;
    }
    
    .create-mission-btn {
        width: 100%;
        justify-content: center;
    }
    
    .app-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        grid-template-areas: 
            "timer"
            "tasks"
            "right-column"
            "stats";
        padding: 15px;
        gap: 15px;
    }
    
    .right-column {
        gap: 15px;
    }
    
    .timer-container {
        padding: 20px;
    }
    
    #display {
        font-size: 3rem;
    }
    
    .button-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .mission-log-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .focus-timer {
        font-size: 4rem;
    }
    
    .task-actions {
        flex-direction: column;
        gap: 5px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .header-row h2 {
        font-size: 1.5rem;
    }
    
    /* Ensure all section headings are consistent on mobile */
    .task-header h3,
    .projects-header h3,
    .star-systems-header h3,
    .mission-log-header h3 {
        font-size: 1.2rem;
    }
    
    .current-task-spotlight {
        padding: 15px;
        margin: 15px 0;
    }
    
    .current-task-text {
        font-size: 1rem;
        padding: 6px 10px;
    }
    
    .quick-add-input-container {
        flex-direction: column;
        gap: 8px;
    }
    
    #quickAddInput,
    #quickAddProjectInput {
        width: 100%;
    }
    
    #quickAddTime,
    #quickAddProjectPriority {
        width: 100%;
        text-align: left;
    }
    
    .quick-add-btn {
        width: 100%;
        height: 44px;
        border-radius: 8px;
    }
    
    .task-item {
        padding: 12px;
    }
    
    .task-actions {
        margin-top: 10px;
    }
    
    .task-actions button {
        flex: 1;
        justify-content: center;
        min-height: 40px;
    }
    
    .settings-overlay {
        position: fixed;
        top: 10px;
        left: 10px;
        right: 10px;
        width: auto;
        max-width: none;
        min-width: auto;
        z-index: 10001;
        padding: 15px;
    }
    
    .milestone-item {
        padding: 10px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .milestone-content {
        flex-direction: row;
        align-items: center;
    }
    
    .milestone-actions {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .task-header,
    .projects-header {
        padding: 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .task-title-area,
    .projects-title-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .task-header-actions,
    .projects-header-actions {
        position: absolute;
        top: 12px;
        right: 12px;
    }
    
    .task-header h3,
    .projects-header h3 {
        font-size: 1.1rem;
        margin: 0;
    }
    
    /* Ensure all section headings are consistent on small mobile */
    .task-header h3,
    .projects-header h3,
    .star-systems-header h3,
    .mission-log-header h3 {
        font-size: 1.1rem;
    }
    
    .task-count,
    .projects-count {
        font-size: 0.75rem;
        margin-top: 2px;
    }
    
    .mission-creator {
        padding: 20px 15px;
        margin: 15px 0;
    }
    
    .mission-creator-content h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .mission-input-row {
        gap: 12px;
    }
    
    #missionNameInput,
    #missionTimeInput {
        padding: 10px 12px;
        font-size: 16px;
    }
    
    .create-mission-btn {
        padding: 12px 25px;
        font-size: 1rem;
        min-height: 44px;
    }
    
    .app-container {
        padding: 10px;
        gap: 10px;
    }
    
    .timer-container,
    .task-list-container,
    .projects-section {
        padding: 12px;
        position: relative;
    }
    
    .star-systems-header {
        padding: 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        position: relative;
    }
    
    .star-systems-title-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .star-systems-header-actions {
        position: absolute;
        top: 12px;
        right: 12px;
    }
    
    .task-list-content,
    .projects-content {
        padding: 10px 12px;
    }
    
    .quick-add-container {
        padding: 12px;
    }
    
    .quick-add-input-container {
        flex-direction: column;
        gap: 8px;
    }
    
    #quickAddProjectInput {
        width: 100%;
    }
    
    #quickAddProjectPriority {
        width: 100%;
    }
    
    .quick-add-btn {
        width: 100%;
        height: 44px;
        border-radius: 8px;
    }
    
    #display {
        font-size: 2.2rem;
        margin: 15px 0;
    }
    
    .header-row {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-row h2 {
        font-size: 1.3rem;
    }
    
    .gear-button {
        align-self: center;
    }
    
    .current-task-spotlight {
        padding: 12px;
        margin: 12px 0;
    }
    
    .current-task-text {
        font-size: 0.95rem;
        line-height: 1.4;
        padding: 8px 10px;
    }
    
    .button-grid {
        gap: 12px;
    }
    
    .button-row {
        gap: 8px;
    }
    
    .primary-btn,
    .launch-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        min-height: 44px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    button {
        padding: 10px 16px;
        font-size: 0.85rem;
        min-height: 40px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .quick-add-container {
        padding: 12px;
    }
    
    .task-item {
        padding: 10px;
        margin-bottom: 8px;
    }
    
    .task-title {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .task-time {
        font-size: 0.75rem;
    }
    
    .task-actions button {
        padding: 8px 12px;
        font-size: 0.75rem;
        min-height: 36px;
    }
    
    .star-system-item {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .star-system-name {
        font-size: 0.9rem;
    }
    
    .star-system-actions {
        flex-direction: column;
        gap: 6px;
        align-items: stretch;
    }
    
    .add-milestone-btn,
    .delete-star-system-btn {
        width: 100%;
        justify-content: center;
        min-height: 36px;
    }
    
    .milestone-item {
        padding: 8px;
        margin-bottom: 4px;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }
    
    .milestone-content {
        flex-direction: row;
        align-items: center;
    }
    
    .milestone-text {
        font-size: 0.8rem;
    }
    
    .milestone-actions {
        align-self: flex-end;
    }
    
    .mission-log-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .mission-log-card {
        padding: 12px;
    }
    
    .mission-log-card h4 {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .stat-value {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .sessions-list {
        max-height: 150px;
    }
    
    .session-item {
        padding: 10px 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .session-duration {
        align-self: flex-end;
    }
    
    .focus-timer {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .focus-task {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .focus-controls {
        flex-direction: column;
        gap: 12px;
    }
    
    .focus-btn {
        width: 100%;
        min-height: 44px;
    }
    
    .welcome-content,
    .success-content {
        padding: 20px;
        margin: 10px;
    }
    
    .welcome-content h1,
    .success-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .success-actions button {
        width: 100%;
        min-height: 44px;
    }
    
    .settings-overlay {
        top: 5px;
        left: 5px;
        right: 5px;
        padding: 15px;
        z-index: 999999;
    }
    
    .feedback-content {
        padding: 20px;
        margin: 10px;
        max-height: 90vh;
    }
    
    .feedback-content h2 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .feedback-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .feedback-form {
        gap: 15px;
    }
    
    .feedback-select,
    .feedback-input,
    .feedback-textarea {
        padding: 10px 12px;
        font-size: 16px;
    }
    
    .feedback-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .feedback-actions button {
        width: 100%;
        min-height: 44px;
    }
    
    .setting-item {
        margin-bottom: 15px;
    }
    
    .setting-label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .setting-description {
        font-size: 0.8rem;
        margin-bottom: 10px;
        line-height: 1.5;
    }
    
    .setting-item input,
    .setting-item select {
        padding: 10px;
        font-size: 16px;
        min-height: 44px;
    }
    
    .toggle-switch {
        width: 50px;
        height: 24px;
    }
    
    .toggle-slider:before {
        height: 18px;
        width: 18px;
    }
    
    input:checked + .toggle-slider:before {
        transform: translateX(26px);
    }
    
    .feedback-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    #closeSettings {
        width: 100%;
        min-height: 44px;
        margin-top: 15px;
    }
    
    .galaxy-toggle-btn {
        padding: 12px;
        font-size: 0.85rem;
        min-height: 44px;
    }
    
    .add-task-btn,
    .add-star-system-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .collapse-btn {
        font-size: 0.9rem;
        padding: 6px;
    }
}

/* Animation classes */
.orbiting-away {
    animation: orbitAway 0.5s ease-in-out forwards;
}

@keyframes orbitAway {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: scale(0) rotate(360deg);
        opacity: 0;
    }
}

/* Drag and drop styles */
.milestone-item[draggable="true"] {
    cursor: grab;
}

.milestone-item.dragging {
    opacity: 0.5;
    transform: rotate(5deg);
}

.milestone-item.drag-over {
    border-color: #4fc3f7;
    background: rgba(79, 195, 247, 0.1);
}

/* Focus mode active state */
body.focus-mode-active {
    overflow: hidden;
}

/* Footer styles */
.app-footer {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content p {
    color: rgba(224, 230, 237, 0.7);
    font-size: 0.9rem;
    margin: 8px 0;
    line-height: 1.4;
}

.footer-content strong {
    color: #4fc3f7;
    font-weight: 600;
}

@media (max-width: 768px) {
    .app-footer {
        padding: 15px 0;
        margin-top: 30px;
    }
    
    .footer-content {
        padding: 0 15px;
    }
    
    .footer-content p {
        font-size: 0.85rem;
        margin: 6px 0;
    }
}

/* Timer container states */
.timer-container.running {
    border-color: #4fc3f7;
    box-shadow: 0 8px 32px rgba(79, 195, 247, 0.2);
}

.timer-container.finished {
    border-color: #4caf50;
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.2);
}