/* _content/MyTaskToday/Components/Layout/MainLayout.razor.rz.scp.css */
/* _content/MyTaskToday/Components/Pages/Home.razor.rz.scp.css */
.dashboard[b-ugykymok37] {
    max-width: 90%;
    margin: auto;
    padding: 16px;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.kpi-panels[b-ugykymok37] {
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
    flex-direction: row;
}

.panel[b-ugykymok37] {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 24px;
    min-height: 140px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: white;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.panel:hover[b-ugykymok37] {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.panel[b-ugykymok37]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.panel h4[b-ugykymok37] {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.panel b[b-ugykymok37] {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    margin-top: 8px;
}

.panel em[b-ugykymok37] {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.panel small[b-ugykymok37] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.panel:nth-child(2)[b-ugykymok37] {
    background: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
}

.panel:nth-child(3)[b-ugykymok37] {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.panel.auto-height[b-ugykymok37] {
    min-height: unset;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.task-card-container[b-ugykymok37] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    flex: 1;
}

.task-header[b-ugykymok37] {
    margin-bottom: 8px;
}

.task-title[b-ugykymok37] {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 4px;
    line-height: 1.3;
}

.task-subtitle[b-ugykymok37] {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.task-body[b-ugykymok37] {
    flex: 1;
    margin-bottom: 12px;
}

.task-actions[b-ugykymok37] {
    margin-top: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.add-task-form[b-ugykymok37] {
    margin: 18px 0;
    padding: 16px;
    background: #e9f5ee;
    border-radius: 10px;
}

.form-container[b-ugykymok37] {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}

.form-column[b-ugykymok37] {
    flex: 1;
}

.mobile-only[b-ugykymok37] {
    display: none;
}

.desktop-only[b-ugykymok37] {
    display: block;
}

.form-row[b-ugykymok37] {
    margin-bottom: 16px;
}

.form-group[b-ugykymok37] {
    margin-bottom: 16px;
}

.form-group label[b-ugykymok37] {
    display: block;
    margin-bottom: 4px;
    font-weight: 500;
}

.form-actions[b-ugykymok37] {
    margin-top: 16px;
}

.error-message[b-ugykymok37] {
    color: red;
    margin-top: 10px;
    font-weight: 500;
}

.password-overlay[b-ugykymok37] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.password-dialog[b-ugykymok37] {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-width: 400px;
}

.password-dialog h4[b-ugykymok37] {
    margin-bottom: 16px;
    color: #333;
}

.password-dialog p[b-ugykymok37] {
    margin-bottom: 16px;
    color: #666;
}

.password-actions[b-ugykymok37] {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

table[b-ugykymok37] {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    margin-top: 12px;
}

th[b-ugykymok37], td[b-ugykymok37] {
    border: 1px solid #eee;
    padding: 7px 10px;
    text-align: left;
}

th[b-ugykymok37] {
    background: #e1e4ed;
}

.current-task-details[b-ugykymok37] {
    margin: 8px 0;
}

.task-info[b-ugykymok37] {
    margin-bottom: 12px;
}

.project-label[b-ugykymok37] {
    color: #666;
    font-size: 0.9em;
    font-style: italic;
}

.time-info[b-ugykymok37] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.time-detail[b-ugykymok37] {
    font-size: 0.9em;
}

.time-detail strong[b-ugykymok37] {
    color: #333;
    margin-right: 8px;
}

.modern-grid[b-ugykymok37] {
    margin-top: 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: white;
}

.dynamic-height-grid[b-ugykymok37] {
    min-height: 400px;
    max-height: 42vh;
    height: auto !important;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.dynamic-height-grid .k-grid-content[b-ugykymok37] {
    flex: 1;
    overflow-y: auto;
    max-height: calc(42vh - 10px);
}

/* Clean Grid Header Styles */
.modern-grid .k-grid-header th[b-ugykymok37] {
    background: #667eea;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 14px 12px;
    border: none;
    border-right: 1px solid #2d3748;
}

.modern-grid .k-grid-header th:hover[b-ugykymok37] {
    background: #2d3748;
}

/* Clean Grid Cell Styles */
.modern-grid .k-grid-content td[b-ugykymok37] {
    padding: 12px;
    border-bottom: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #2d3748;
    vertical-align: middle;
}

.modern-grid .k-grid-content tr:hover[b-ugykymok37] {
    background: #f7fafc;
}

.modern-grid .k-grid-content tr:nth-child(even)[b-ugykymok37] {
    background: #fafafa;
}

.modern-grid .k-grid-content tr:nth-child(even):hover[b-ugykymok37] {
    background: #f7fafc;
}

/* Simple Status Badge Styles */
.status-badge[b-ugykymok37] {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    display: inline-block;
    min-width: 80px;
}

.status-done[b-ugykymok37] {
    background: #38a169;
}

.status-in-progress[b-ugykymok37] {
    background: #ed8936;
}

.status-default[b-ugykymok37] {
    background: #718096;
}

/* Clean Grid Pagination Styles */
.modern-grid .k-pager[b-ugykymok37] {
    background: #f8f9fa;
    border-top: 1px solid #e2e8f0;
    padding: 10px;
}

.modern-grid .k-pager .k-button[b-ugykymok37] {
    border-radius: 4px;
    margin: 0 2px;
}

/* Clean Filter Row Styles */
.modern-grid .k-filter-row td[b-ugykymok37] {
    background: #f1f5f9;
    padding: 8px 12px;
}

.modern-grid .k-filter-row input[b-ugykymok37] {
    border-radius: 4px;
    border: 1px solid #cbd5e0;
    padding: 6px 8px;
}

.section-heading[b-ugykymok37] {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 24px 0 16px 0;
    color: #2d3748;
    border-bottom: 2px solid #4a5568;
    padding-bottom: 8px;
}

.warning-message[b-ugykymok37] {
    margin: 0;
    padding: 8px 12px;
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #856404;
    white-space: nowrap;
}

.fixed-width-button[b-ugykymok37] {
    min-width: 120px;
    width: 120px;
}

.add-task-button-container[b-ugykymok37] {
    margin: 16px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.countdown-banner[b-ugykymok37] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 12px 20px;
    margin-bottom: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(240, 147, 251, 0.3);
    animation: pulse-b-ugykymok37 2s infinite;
}

.countdown-text[b-ugykymok37] {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

@keyframes pulse-b-ugykymok37 {
    0% {
        box-shadow: 0 4px 12px rgba(240, 147, 251, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(240, 147, 251, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(240, 147, 251, 0.3);
    }
}

.password-input-row[b-ugykymok37] {
    display: flex;
    align-items: center;
    width: 100%;
}

.password-eye-btn[b-ugykymok37] {
    margin-left: -38px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 0;
}

.task-timing-hint[b-ugykymok37] {
    margin-top: 12px;
    padding: 8px 12px;
    background: rgba(102, 126, 234, 0.08);
    border-left: 3px solid #667eea;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.4;
}

.task-timing-hint em[b-ugykymok37] {
    font-style: normal;
    color: #2d3748;
}

.field-hint[b-ugykymok37] {
    margin-top: 4px;
    font-size: 0.85em;
    color: #666;
}

.current-time-label[b-ugykymok37] {
    font-size: 0.65em;
    color: #666;
    margin-left: 12px;
}

.dashboard-title[b-ugykymok37] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.mobile-break[b-ugykymok37] {
    display: none;
}

/* Responsive styles for mobile */
@media (max-width: 600px) {
    .kpi-panels[b-ugykymok37] {
        flex-direction: column;
        gap: 12px;
    }

    .panel[b-ugykymok37] {
        min-width: 0;
        min-height: 100px;
        padding: 14px;
    }

    .panel h4[b-ugykymok37] {
        font-size: 1rem;
    }

    .panel b[b-ugykymok37] {
        font-size: 1.1rem;
    }

    .panel em[b-ugykymok37],
    .panel small[b-ugykymok37] {
        font-size: 0.85rem;
    }

    .dashboard-title[b-ugykymok37] {
        font-size: 1.2rem;
    }

    .mobile-break[b-ugykymok37] {
        display: inline;
    }

    .current-time-label[b-ugykymok37] {
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }

    .form-container[b-ugykymok37] {
        flex-direction: column;
        gap: 0;
    }

    .desktop-only[b-ugykymok37] {
        display: none !important;
    }

    .mobile-only[b-ugykymok37] {
        display: block !important;
    }

    .task-title[b-ugykymok37] {
        font-size: 1rem;
    }
    
    .task-subtitle[b-ugykymok37] {
        font-size: 0.85rem;
    }
    
    .current-task-details[b-ugykymok37] {
        margin: 6px 0;
    }
    
    .time-detail[b-ugykymok37] {
        font-size: 0.8em;
    }
    
    .project-label[b-ugykymok37] {
        font-size: 0.8em;
    }
    
    .task-actions[b-ugykymok37] {
        margin-top: 8px;
    }
}
