body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #000428 0%, #004e92 100%);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
    background-attachment: fixed;
}

header {
    text-align: center;
    margin: 20px;
    position: relative;
    color: white;
}

header #header-title {
    font-size: 36px;
    font-weight: 900;
    margin: 0 0 5px 0;
}

#timer-container {
    display: none !important;
    flex-direction: column;
    align-items: center;
    margin: 5px 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#timer-container.active {
    display: flex !important;
    opacity: 1;
    transform: translateY(0);
}

#timer {
    font-size: 36px;
    margin: 0;
    color: #fff;
    display: none;
}

#timer-container.active #timer {
    display: block;
}

#stop-timer-button {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #d9534f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#stop-timer-button:hover {
    background-color: #c9302c;
}

.metrics {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.metrics > div {
    margin: 0 15px;
    font-size: 18px;
    font-weight: bold;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.column {
    width: 90%;
    margin: 10px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-height: 200px;
    position: relative;
}

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

.todo-header .header-left {
    display: flex;
    align-items: center;
}

.todo-header h2 {
    margin: 0;
    display: flex;
    align-items: center;
}

#add-task-button {
    margin-top: -2px;
}

h2 {
    margin-top: 0;
    color: #333;
}

#add-task-button, #add-onhold-task-button {
    display: inline-block;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    vertical-align: middle;
}

#add-task-button:hover, #add-onhold-task-button:hover {
    background-color: #003d82;
}

.todo-item, .done-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: grab;
    background-color: #f9f9f9;
    position: relative;
}

.done-item {
    background-color: #e0e0e0;
}

.task-title {
    border: none;
    background: none;
    flex: 1;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    margin-right: 10px;
    min-width: 0;
}

.time-buttons button {
    font-family: 'Poppins', sans-serif;
    margin: 0 3px;
    background-color: #e6e6e6;
    color: #6e6e6e;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.time-buttons button:hover {
    background-color: #3a006a;
    color: white;
}

.time-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
}

.time-buttons button:last-child {
    margin-right: 5px;
}

.delete-button {
    background-color: #d9534f;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.delete-button:hover {
    background-color: #c9302c;
}

.done-button {
    background-color: #5cb85c;
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 5px;
}

.done-button:hover {
    background-color: #4cae4c;
}

.onhold-button {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    border: 1px solid #bbbbbd;
    border-radius: 5px;
    cursor: pointer;
    background-color: #f2f2f2;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onhold-button:hover {
    background-color: #e0e0e0;
    color: #000;
}

.onhold-button::before {
    content: '\270B';
    font-size: 15px;
}

.ondeck-move-button {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    border: 1px solid #6c757d;
    border-radius: 5px;
    cursor: pointer;
    background-color: #f8f9fa;
    color: #495057;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    transition: all 0.2s ease;
}

.ondeck-move-button:hover {
    background-color: #e2e6ea;
    color: #495057;
}

.ondeck-move-button i {
    font-size: 14px;
}

/* On-Deck Section Styles */
.ondeck-section {
    margin-top: 20px;
    border-top: 2px solid #e0e0e0;
    padding-top: 10px;
}

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

.ondeck-toggle {
    background: none;
    border: none;
    color: #666;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.ondeck-toggle:hover {
    background-color: #f0f0f0;
    color: #333;
}

.ondeck-toggle i {
    transition: transform 0.3s ease;
}

.ondeck-toggle.collapsed i {
    transform: rotate(-90deg);
}

.ondeck-count {
    margin-left: 6px;
    color: #999;
    font-size: 14px;
    font-weight: 500;
}

.add-ondeck-button {
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.add-ondeck-button:hover {
    background-color: #5a6268;
}

.ondeck-content {
    max-height: 500px;
    overflow-y: auto;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    opacity: 1;
    display: block;
    min-height: 40px;
    padding: 5px;
    border-radius: 5px;
}

.ondeck-content.collapsed {
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0;
    padding: 0 !important;
    min-height: 0 !important;
}

.ondeck-content.drag-over {
    background-color: #e8f4f8;
    border: 2px dashed #4CAF50;
}

.ondeck-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: grab;
    background-color: #f5f5f5;
    position: relative;
    transition: all 0.2s ease;
}

.ondeck-item:hover {
    background-color: #ebebeb;
    border-color: #ccc;
}

.ondeck-item:active {
    cursor: grabbing;
}

.ondeck-task-title {
    border: none;
    background: none;
    flex: 1;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #555;
    margin-right: 10px;
    min-width: 0;
}

.ondeck-button-container {
    display: flex;
    gap: 5px;
    align-items: center;
}

.ondeck-activate-button {
    background-color: transparent;
    color: #bbb;
    border: 1px solid #bbb;
    padding: 3px 6px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 10px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s ease;
}

.ondeck-activate-button:hover {
    color: #6a5acd;
    border-color: #6a5acd;
}

.ondeck-delete-button {
    background-color: #e0e0e0;
    color: #666;
    border: none;
    padding: 4px 8px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
}

.ondeck-delete-button:hover {
    background-color: #d0d0d0;
    color: #333;
}

.drag-over {
    border: 2px dashed #ccc;
}

.blurred {
    filter: blur(5px);
}

.current-task, .current-task * {
    filter: none !important;
}

/* Remove old quote modal styles */
.quote-modal,
.quote-content {
    display: none;
}

.login-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.login-button:hover {
    background-color: #0056b3;
}

.user-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: center;
}

.user-icon {
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    overflow: hidden;
}

.user-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logout-button {
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    display: none;
}

.logout-button:hover {
    background-color: #0056b3;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 100px;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    font-family: 'Poppins', sans-serif !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 95%;
    max-width: 800px;
    padding: 40px 20px 20px 20px;
    background-color: #fefefe;
    margin: 0 auto;
    border: 1px solid #888;
    border-radius: 10px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.link {
    color: #007bff;
    cursor: pointer;
}

.link:hover {
    text-decoration: underline;
}

#pause-timer-button, #start-timer-button {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #f0ad4e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#pause-timer-button:hover {
    background-color: #ec971f;
}

#start-timer-button {
    background-color: #2e86d9;
    color: white;
}

#start-timer-button:hover {
    background-color: #2a5cad;
}

#done-timer-button {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #5cb85c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#done-timer-button:hover {
    background-color: #4cae4c;
}

.working-on-light {
    font-weight: 200;
    margin-right: 5px;
}

#button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
}

.timer-option {
    background-color: #e0e0e0;
    color: #666;
    border: none;
    padding: 4px 8px;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    margin-right: 4px;
    transition: background-color 0.2s;
}

.timer-option:hover {
    background-color: #d0d0d0;
}

.timer-option:active {
    background-color: #c0c0c0;
}

#button-container button {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    padding: 10px 20px;
    background-color: #f0ad4e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#button-container #stop-timer-button {
    background-color: #d9534f;
}

#button-container #stop-timer-button:hover {
    background-color: #c9302c;
}

#button-container #pause-timer-button {
    background-color: #f0ad4e;
}

#button-container #pause-timer-button:hover {
    background-color: #ec971f;
}

#button-container #done-timer-button {
    background-color: #5cb85c;
}

#button-container #done-timer-button:hover {
    background-color: #4cae4c;
}

.delete-button,
.done-button {
    margin: 0 2px;
}

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

.onhold-header .header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.onhold-header h2 {
    margin: 0;
    display: flex;
    align-items: center;
}

.task-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
}

.common-button {
    width: 60px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    margin: 0 2px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    border-radius: 5px;
    cursor: pointer;
    border: none;
}

.task-input-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    z-index: 1002;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    display: none;
    width: 90%;
    max-width: 400px;
}

.task-input-field {
    width: 100%;
    font-size: 20px;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

/* Blur only the main content when overlays/popups are open */
body.blur-effect-enabled #main-content {
    filter: blur(5px);
    transition: filter 0.3s;
}

.google-login-button {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    margin-top: 10px;
    background-color: #FB4817;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    text-align: center;
}

.google-login-button:hover {
    background-color: #357ae8;
}

#login-form {
    font-family: 'Poppins', sans-serif;
}

#login-form input[type="email"],
#login-form input[type="password"],
#register-form input[type="email"],
#register-form input[type="password"] {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

#login-submit,
#register-submit {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

#login-submit:hover,
#register-submit:hover {
    background-color: #0056b3;
}

.login-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.login-left {
    flex: 1;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.adventure-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.welcome-back {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: #333;
    margin-top: 20px;
}

.login-right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#login-form,
#register-form {
    width: 100%;
    max-width: 400px;
    margin: auto;
}

@media (min-width: 600px) {
    .container {
        flex-direction: row;
    }
    
    .column {
        width: 30%;
    }
    
    #todo-column {
        width: 36.5%;
    }
    
    #onhold-column {
        width: 30.5%;
    }
    
    #done-column {
        width: 23.5%;
    }
    
    header #header-title {
        font-size: 48px;
    }
    
    #timer {
        font-size: 48px;
    }
}

.login-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100vh; 
    padding: 0;
}

.login-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.adventure-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 0;
}

.welcome-back {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.login-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    max-width: 400px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: white; 
    border-radius: 8px;
}

.modal-content {
    display: flex;
    width: 80%;
    max-width: 800px; 
    margin: 0 auto; 
    max-height: 90vh; 
    overflow: hidden; 
    border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#login-form,
#register-form {
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.login-right {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#login-form,
#register-form {
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.icon-button {
    position: relative;
    margin: 0 3px;
}

.icon-button .tooltip {
    visibility: hidden;
    position: absolute;
    background-color: black;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75em;
    text-align: center;
    padding: 5px 8px;
    border-radius: 4px;
    z-index: 100;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    white-space: nowrap;
    box-sizing: border-box;
}

.icon-button .tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.icon-button:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

/* Specific width adjustments for each button type */
.play-button .tooltip {
    width: 80px;
}

.delete-button .tooltip {
    width: 60px;
}

.done-button .tooltip {
    width: 60px;
}

.onhold-button .tooltip {
    width: 70px;
}

.ondeck-move-button .tooltip {
    width: 90px;
}

.modal-content textarea {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: vertical;
    margin-bottom: 10px;
}

.note-button-container .outline-button,
.note-button-container .delete-note-btn {
    flex: 1;
    margin: 0 5px;
    max-width: calc(50% - 10px);
}

.outline-button {
    background-color: transparent;
    border: 2px solid #4CAF50;
    color: #4CAF50;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: block !important;
    font-size: 16px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 5px;
}

.delete-note-btn {
    background-color: transparent;
    border: 2px solid #f44336;
    color: #f44336;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: block !important;
    font-size: 16px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 5px;
}

.delete-note-btn:hover {
    background-color: #f44336;
    color: white;
}

.outline-button:hover {
    background-color: #4CAF50;
    color: white;
}

.close {
    display:none;
}

#module-creator {
    margin: 20px;
    text-align: center;
}

#new-module-name {
    padding: 10px;
    margin-right: 10px;
    font-size: 16px;
}

#add-module {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

#button-container button {
    margin: 0 5px;
    padding: 10px 20px;
    cursor: pointer;
}

#new-module-name {
    margin-top: 10px;
}

.dashed-outline-button {
    background-color: transparent;
    border: 2px dashed #4CAF50;
    color: #4CAF50;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.dashed-outline-button:hover {
    background-color: #4CAF50;
    color: white;
}

.note-button:focus {
    outline: 2px solid #4CAF50;
}

.note-button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    width: 100%;
}

.note-button-container .outline-button,
.note-button-container .delete-note-btn {
    flex: 1;
    margin: 0 5px;
    max-width: calc(50% - 10px);
}

.note-button {
    display: block;
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 8px;
    text-align: left;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: grab;
    transition: all 0.3s ease;
    background-color: white;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    user-select: none;
}

.note-button:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.note-button:active {
    cursor: grabbing;
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.note-button.dragging {
    opacity: 0.5;
    cursor: grabbing;
    background-color: #f8f9fa;
    border: 2px dashed #4CAF50;
}

.note-button.drag-over {
    border: 2px dashed #4CAF50;
    background-color: #f0f9f0;
    transform: scale(1.02);
}

.note-star {
    margin-right: 10px;
    color: #ccc;
    font-size: 16px;
    transition: all 0.3s ease;
}

.note-star.starred {
    color: #ffd700;
}

.note-star:hover {
    transform: scale(1.2);
}

.note-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 15px;
}

.star-button {
    background: none;
    border: none;
    color: #ccc;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.star-button:hover {
    transform: scale(1.2);
}

.star-button i {
    transition: all 0.3s ease;
}

.star-button:hover i {
    color: #ffd700;
}

.starred-note {
    border-left: 3px solid #ffd700;
}

.note-title-input {
    padding: 0px 0px;
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
    text-align: left;
    color: #000000;
    border: none;
    cursor: pointer;
    font-size: 26px;
    font-weight: bold;
    width: 100%;
}

.close-note {
    display: none;
}

.outline-button,
.delete-note-btn {
    font-family: 'Poppins', sans-serif;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: block !important;
    font-size: 16px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 5px;
}

#add-note-button {
    width: auto !important;
    padding: 10px 20px !important;
    font-family: 'Poppins', sans-serif !important;
    background-color: transparent !important;
    border: 2px dashed #4CAF50 !important;
    color: #4CAF50 !important;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    margin-left: 10px;
}

#add-note-button:hover {
    background-color: #4CAF50 !important;
    color: white !important;
}

.notes-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
}

.notes-header h3 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.modal-buttons {
    display: flex !important;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.modal-button {
    flex: 1 !important;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.note-color-picker {
    display: block;
    margin: 10px 0;
}

.move-buttons {
    display: flex;
    flex-direction: column;
    margin-right: 8px;
    color: #bbb;
}

.move-button {
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 1px;
    font-size: 10px;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.todo-item:hover .move-buttons,
.done-item:hover .move-buttons {
    color: #666;
}

.move-button:hover {
    color: #007bff;
}

.play-button {
    background-color: #6a5acd;
    color: white;
    border: none;
    padding: 5px 8px; 
    border-radius: 5px;
    cursor: pointer;
    margin-right: 5px;
    font-size: 0.9em;
    transition: background-color 0.2s ease;
}

.play-button:hover {
    background-color: #483d8b;
}

.play-button i {
    font-size: 0.9em;
}

@keyframes pulse {
    /* Empty to disable animation */
}

@keyframes ripple {
    /* Empty to disable animation */
}

@keyframes cyber-highlight {
    /* Empty to disable animation */
}

.time-options-popup {
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 5px;
    width: 70px;
    font-size: 0.95em;
}

.time-option {
    padding: 8px 10px;
    text-align: center;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    border-radius: 3px;
    margin: 2px;
    transition: background-color 0.2s, color 0.2s;
}

.time-option:hover {
    background-color: #f0f0f0;
    color: #6a5acd;
    font-weight: 500;
}

.play-button .tooltip {
    width: 100px;
    font-size: 0.8em;
    padding: 6px 5px;
    margin-left: -50px;
    text-align: center;
    white-space: nowrap;
}

.icon-button .tooltip {
    font-family: 'Poppins', sans-serif;
    visibility: hidden;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position above the icon */
    left: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Ensure tooltip arrow is centered */
.icon-button .tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.view-all-button {
    background: none;
    border: none;
    color: #666;
    padding: 0;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 10px;
    text-align: left;
}

.view-all-button:hover {
    color: #333;
}

.view-all-button.active {
    color: #4CAF50;
}

#todo-column .todo-item {
    filter: none;
    transition: filter 0.3s ease;
    pointer-events: auto;
    user-select: text;
}

#todo-column .todo-item.blurred {
    filter: blur(12px);
    pointer-events: none;
    user-select: none;
}

#onhold-column .todo-item {
    filter: blur(12px);
    transition: filter 0.3s ease;
    pointer-events: none;
    user-select: none;
}

#onhold-column .todo-item.unblurred {
    filter: none;
    pointer-events: auto;
    user-select: text;
}

#done-column .done-item {
    filter: blur(12px);
    transition: filter 0.3s ease;
    pointer-events: none;
    user-select: none;
}

#done-column .done-item.unblurred {
    filter: none;
    pointer-events: auto;
    user-select: text;
}

.eye-icon-button {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    font-size: 16px;
    margin-left: 5px;
    margin-top: 2px;
    transition: color 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
}

.eye-icon-button:hover {
    color: #333;
}

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

.onhold-header .header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.onhold-header h2 {
    margin: 0;
    display: flex;
    align-items: center;
}

.hamburger-menu {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1001;
}

.prayer-menu {
    position: absolute;
    top: 20px;
    left: 80px;
    z-index: 1001;
}

.prayer-button {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.prayer-button:hover {
    color: #ffd700;
    background: rgba(255, 255, 255, 0.1);
}

.prayer-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #f44336;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.hamburger-button {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.hamburger-button:hover {
    color: #ccc;
}

.prayer-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1002;
    display: none;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.prayer-popup.active {
    display: flex;
    flex-direction: column;
}

.prayer-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.prayer-popup-header .header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prayer-popup-header h3 {
    margin: 0;
    color: #333;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prayer-popup-header h3 i {
    color: #ffd700;
}

.close-prayer-popup {
    background: none;
    border: none;
    color: #666;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-prayer-popup:hover {
    background: #e9ecef;
    color: #333;
}

.prayer-popup-list {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 60vh;
    max-width: 600px;
    margin: 0 auto;
}

.add-prayer-popup-button {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    margin: 20px;
    align-self: center;
}

.add-prayer-popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

/* Responsive design for prayer popup */
@media (max-width: 768px) {
    .prayer-menu {
        left: 70px;
    }
    
    .prayer-popup {
        width: 95%;
        max-height: 90vh;
    }
    
    .prayer-popup-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.notes-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    transform: translateX(-300px);
    pointer-events: none;
    opacity: 0;
    will-change: transform;
}

.notes-menu.active {
    transform: translateX(0);
    pointer-events: auto;
    opacity: 1;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

#add-note-button {
    width: calc(100% - 40px) !important;
    padding: 12px 20px !important;
    font-family: 'Poppins', sans-serif !important;
    background-color: white !important;
    border: 2px dashed #e0e0e0 !important;
    color: #666 !important;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
    margin: 20px;
    position: sticky;
    bottom: 0;
    transition: all 0.3s ease;
}

#add-note-button:hover {
    background-color: #f8f9fa !important;
    border-color: #ccc !important;
    color: #333 !important;
}

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

.done-header .header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.done-header h2 {
    margin: 0;
    display: flex;
    align-items: center;
}

.view-all-button {
    background: none;
    border: none;
    color: #666;
    padding: 0;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 10px;
    text-align: left;
}

/* --- Modern Minimal Calendar Styles --- */
/*
#next-meeting-container {
    margin: 32px auto 16px auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    width: auto;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 24px 32px 20px 32px;
    gap: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.next-meeting-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0;
    gap: 18px;
    color: #fff;
    text-align: left;
}

.next-meeting-header h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.01em;
    text-align: left;
}

.next-meeting-header h3 i {
    color: #fff;
    font-size: 1.2em;
}

.sync-calendar-button {
    background: rgba(255,255,255,0.08);
    border: none;
    color: #fff;
    border-radius: 50%;
    padding: 8px;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: none;
    font-size: 1.1em;
    margin-left: 16px;
}
.sync-calendar-button:hover {
    background: rgba(255,255,255,0.18);
}

.next-meeting-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    color: #fff;
    font-size: 1rem;
    padding: 0;
    margin: 0;
    justify-content: center;
    text-align: left;
}

#meeting-details {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 0;
    background: none;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    color: #fff;
    text-align: left;
}

#meeting-details h4, #meeting-time, #meeting-location {
    margin: 0 16px 0 0;
    text-align: left;
}

#meeting-details h4 {
    color: #fff;
    font-size: 1.08em;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-align: left;
}

#meeting-time {
    color: #a3c8ff;
    font-weight: 500;
    font-size: 0.98em;
    text-align: left;
}

#meeting-location {
    color: #e0e0e0;
    font-size: 0.97em;
    text-align: left;
}

#no-meeting-message {
    text-align: left;
    font-style: italic;
    color: #fff;
    font-size: 1.05em;
    margin: 0 0 0 16px;
    letter-spacing: 0.01em;
    text-align: left;
}

@media (max-width: 900px) {
    #next-meeting-container {
        flex-direction: column;
        align-items: center;
        padding: 18px 8px 16px 8px;
        max-width: 98vw;
        gap: 12px;
    }
    .next-meeting-content {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: left;
    }
    #meeting-details h4, #meeting-time, #meeting-location, #no-meeting-message {
        margin: 0 0 0 0;
        white-space: normal;
        text-align: left;
    }
}
*/
/* --- End Modern Minimal Calendar Styles --- */

/* --- Prayer List Styles --- */
.prayer-section {
    max-width: 1200px;
    margin: 20px auto 40px auto;
    padding: 0 20px;
}

.prayer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.prayer-header .header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prayer-header h2 {
    color: white;
    margin: 0;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prayer-header h2 i {
    color: #ffd700;
}

.add-prayer-button {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.add-prayer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.prayer-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.prayer-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

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

.prayer-item.due-today {
    background: rgba(76, 175, 80, 0.1);
    border-left: 4px solid #4CAF50;
}

.prayer-item.overdue {
    background: rgba(244, 67, 54, 0.1);
    border-left: 4px solid #f44336;
}

.prayer-item-content {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.prayer-name-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    gap: 16px;
    text-align: left;
}

.prayer-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
    min-width: 0;
    text-align: left;
}

.prayer-date {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
    text-align: center;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.05);
}

.prayer-date.due-today {
    color: #4CAF50;
    font-weight: 600;
    background: rgba(76, 175, 80, 0.1);
}

.prayer-date.overdue {
    color: #f44336;
    font-weight: 600;
    background: rgba(244, 67, 54, 0.1);
}

.prayer-notes {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    white-space: pre-wrap;
    max-width: 100%;
    overflow-wrap: break-word;
    transition: filter 0.3s ease;
}

.prayer-notes.blurred-notes {
    filter: blur(4px);
    pointer-events: none;
    user-select: none;
}

.prayer-actions-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

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

.prayer-action-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prayer-action-btn.add-task {
    background: #e8f5e8;
    color: #2e7d32;
}

.prayer-action-btn.add-task:hover {
    background: #c8e6c9;
}

.prayer-action-btn.edit {
    background: #e3f2fd;
    color: #1976d2;
}

.prayer-action-btn.edit:hover {
    background: #bbdefb;
}

.prayer-action-btn.delete {
    background: #ffebee;
    color: #d32f2f;
}

.prayer-action-btn.delete:hover {
    background: #ffcdd2;
}

/* Prayer Modal Styles */
#prayer-modal .modal-content {
    max-width: 700px;
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

#prayer-modal .modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

#prayer-modal .outline-button,
#prayer-modal .delete-note-btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .prayer-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .prayer-list {
        margin: 20px 10px;
        max-width: none;
    }
    
    .prayer-popup-list {
        margin: 0 10px;
        max-width: none;
    }
    
    .prayer-item {
        padding: 12px 16px;
    }
    
    .prayer-name-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .prayer-actions-section {
        gap: 6px;
    }
    
    .prayer-actions {
        gap: 6px;
    }
    
    .prayer-action-btn {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}

/* Empty state */
.prayer-list:empty::after {
    content: 'No prayer requests yet. Click "Add Prayer Request" to get started.';
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    padding: 40px 20px;
    font-size: 16px;
}

/* --- End Prayer List Styles --- */

/* Prayer Notes Blur */
.blurred-notes {
    filter: blur(8px);
    transition: filter 0.3s;
    pointer-events: none;
    user-select: none;
}

.eye-toggle-btn {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 16px;
    margin-left: 8px;
    vertical-align: middle;
    transition: color 0.2s;
}
.eye-toggle-btn:hover {
    color: #333;
}

/* --- Goals Tracking Styles --- */
.goals-container {
    margin: 24px auto 16px auto;
    max-width: 1200px;
    width: auto;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 24px 16px 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.goals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    color: #fff;
}

.goals-header h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.01em;
}

.goals-header h3 i {
    color: #ffd700;
    font-size: 1.2em;
}

.add-goal-button {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.add-goal-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.goals-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.goals-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.goals-section h4 {
    color: #fff;
    margin: 0 0 16px 0;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.goals-section h4 i {
    color: #4CAF50;
}

.goals-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.goal-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4CAF50;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

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

.goal-item.expanded {
    padding: 16px;
}

.goal-item.critical {
    border-left-color: #f44336;
}

.goal-item.high {
    border-left-color: #ff9800;
}

.goal-item.medium {
    border-left-color: #2196F3;
}

.goal-item.low {
    border-left-color: #9E9E9E;
}

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

.goal-title {
    font-weight: 600;
    color: #333;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
}

.goal-priority {
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
}

.goal-priority.critical {
    background: #ffebee;
    color: #c62828;
}

.goal-priority.high {
    background: #fff3e0;
    color: #ef6c00;
}

.goal-priority.medium {
    background: #e3f2fd;
    color: #1565c0;
}

.goal-priority.low {
    background: #f5f5f5;
    color: #616161;
}

.goal-description {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 12px;
    white-space: pre-wrap;
    display: none;
}

.goal-item.expanded .goal-description {
    display: block;
}

.goal-progress-container {
    margin-bottom: 8px;
}

.goal-progress-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 4px;
}

.goal-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.goal-progress-text {
    font-size: 10px;
    color: #666;
    text-align: right;
}

.goal-quarter {
    font-size: 10px;
    color: #888;
    font-style: italic;
    margin-bottom: 6px;
    display: none;
}

.goal-item.expanded .goal-quarter {
    display: block;
}

.goal-actions {
    display: none;
    gap: 6px;
    justify-content: flex-end;
    margin-top: 8px;
}

.goal-item.expanded .goal-actions {
    display: flex;
}

.goal-action-btn {
    padding: 3px 6px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.goal-action-btn.edit {
    background: #e3f2fd;
    color: #1976d2;
}

.goal-action-btn.edit:hover {
    background: #bbdefb;
}

.goal-action-btn.delete {
    background: #ffebee;
    color: #d32f2f;
}

.goal-action-btn.delete:hover {
    background: #ffcdd2;
}

.goal-action-btn.progress {
    background: #e8f5e8;
    color: #2e7d32;
}

.goal-action-btn.progress:hover {
    background: #c8e6c9;
}

/* Progress Slider Styles */
.progress-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e0e0e0;
    outline: none;
    -webkit-appearance: none;
    margin-bottom: 8px;
}

.progress-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.progress-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.progress-display {
    text-align: center;
    font-weight: 600;
    color: #4CAF50;
    font-size: 14px;
}

/* Empty State */
.goals-list:empty::after {
    content: 'No goals set yet. Click the + button to add your first goal!';
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    padding: 20px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .goals-container {
        margin: 16px auto;
        padding: 16px;
    }
    
    .goals-content {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .goals-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .goal-item {
        padding: 12px;
    }
    
    .goal-actions {
        flex-wrap: wrap;
    }
    
    .goal-action-btn {
        flex: 1;
        min-width: 60px;
    }
}

/* --- End Goals Tracking Styles --- */

.modal-content form {
    width: 100%;
}

.modal-content .form-group {
    width: 100%;
}

.modal-content input,
.modal-content textarea,
.modal-content select {
    width: 100%;
    box-sizing: border-box;
}

