* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.btn {
    border: 2px solid;
    background: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    width: 100%;
    max-width: 400px;
    padding: 12px 20px;
}

.btn:hover {
}

.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    font-size: 12px;
    z-index: 1000;
}

.logo {
    width: 150px;
    height: 150px;
    border: 2px solid;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
}

.logo-text {
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 2px;
}

h1 {
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.subtitle {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 40px;
    line-height: 1.5;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
}

.form-container {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.input-field {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid;
    font-family: Arial, sans-serif;
    font-size: 14px;
    text-transform: none;
}

.form-spacer {
    height: 20px;
}

.forgot-password {
    text-align: left;
    font-size: 12px;
    text-decoration: underline;
    margin-top: -5px;
}

.forgot-password:hover {
    opacity: 0.7;
}

.back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    font-size: 12px;
    z-index: 1000;
    text-decoration: none;
    border: 2px solid #8B0000 !important;
}

.back-button:hover {
    opacity: 0.7;
}

.home-body {
    display: block;
    padding: 0;
    min-height: 100vh;
}

.header {
    padding: 20px;
    border-bottom: 2px solid;
}

.menu {
    display: flex;
    justify-content: space-around;
    max-width: 800px;
    margin: 0 auto;
}

.menu-link {
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
}

.menu-link:hover {
    opacity: 0.7;
}

.home-main {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.date-section {
    text-align: center;
    margin-bottom: 40px;
}

.date-day {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.date-number {
    font-size: 18px;
    letter-spacing: 1px;
}

.section-box {
    border: 2px solid;
    padding: 30px 20px;
    margin-bottom: 40px;
}

.section-title {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.message-text {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.tab-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.tab-button {
    flex: 1;
    padding: 15px;
    border: 2px solid;
    background: none;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
}

.tab-button.active {
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tasks-container {
    margin-top: 20px;
}

.task-item {
    padding: 20px;
    border: 2px solid;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.task-title {
    font-size: 14px;
    letter-spacing: 1px;
}

.task-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.newtask-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.btn-close {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border: 2px solid;
    background: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
}

.newtask-container {
    max-width: 600px;
    width: 100%;
}

.newtask-form {
    margin-top: 30px;
}

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

.form-label {
    display: block;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: left;
    text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid;
    background: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    resize: none;
}

.form-textarea {
    min-height: 120px;
}

.task-type-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.task-type-btn {
    flex: 1;
    padding: 15px;
    border: 2px solid;
    background: none;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
}

.task-type-btn.active {
}

.date-inputs {
    display: flex;
    gap: 10px;
}

.date-input {
    flex: 1;
    padding: 15px;
    border: 2px solid;
    background: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    text-align: center;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
}

.settings-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.btn-settings {
    padding: 15px;
}

.theme-switch-buttons {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.theme-switch-btn {
    flex: 1;
    padding: 15px;
    border: 2px solid;
    background: none;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
}

.theme-switch-btn.active {
}

.weekly-progress-box {
    position: relative;
}

.week-nav-btn {
    position: absolute;
    top: 20px;
    width: 40px;
    height: 40px;
    border: 2px solid;
    background: none;
    font-size: 20px;
    cursor: pointer;
}

.week-nav-left {
    left: 20px;
}

.week-nav-right {
    right: 20px;
}

.centered-title {
    text-align: center;
}

.week-info {
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.bar-chart {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 200px;
    margin: 30px 0;
}

.bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.bar-empty {
    width: 40px;
    height: 150px;
    border: 2px solid;
    position: relative;
}

.bar-filled {
    position: absolute;
    bottom: 0;
    width: 100%;
    transition: height 0.3s ease;
}

.bar-label {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
}

.bar-date {
    font-size: 10px;
    letter-spacing: 0.5px;
}

.weekly-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding-top: 20px;
    border-top: 2px solid;
    margin-top: 20px;
}

.stat-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-big-number {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 2px;
}

.stat-small-text {
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 1px;
}

.stat-divider {
    font-size: 48px;
    opacity: 0.3;
}

.stat-percent {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 2px;
}

.info-boxes {
    display: flex;
    gap: 15px;
    justify-content: space-around;
}

.info-box {
    flex: 1;
    padding: 20px;
    border: 2px solid;
    text-align: center;
}

.info-number {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.info-label {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.categories-list {
    margin-top: 20px;
}

.task-item-new {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 2px solid;
    margin-bottom: 10px;
}

.task-status-box {
    padding: 5px 10px;
    border: 2px solid;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    min-width: 60px;
    text-align: center;
}

.task-status-todo {
    color: #000000;
    border-color: #000000;
}

.task-status-done {
    color: #006400;
    border-color: #006400;
}

.task-title-new {
    flex: 1;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-align: left;
}

.task-btn-settings {
    padding: 8px 12px;
    border: 2px solid;
    background: none;
    font-size: 14px;
    cursor: pointer;
    min-width: 40px;
}

.task-btn-do-today,
.task-btn-do-later,
.task-btn-done {
    padding: 8px 15px;
    border: 2px solid;
    background: none;
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
}

.reward-count-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border: 2px solid;
    margin-bottom: 20px;
}

.reward-count {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 2px;
}

.reward-label {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.reward-claim-btn {
    width: 100%;
    padding: 15px;
    border: 2px solid;
    background: none;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
}

.reward-claim-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.date-separator {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 10px 0;
    margin: 20px 0 10px;
    border-bottom: 1px solid;
    opacity: 0.6;
}

@media (max-width: 600px) {
    .menu {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .bar-chart {
        height: 150px;
    }
    
    .bar-empty {
        width: 30px;
        height: 120px;
    }
    
    .info-boxes {
        flex-direction: column;
    }
    
    .weekly-stats {
        flex-direction: column;
        gap: 20px;
    }
}
