/* /Components/Dialogs/ConfigDialog.razor.rz.scp.css */
#blazor-error-ui[b-4fnfmoupp0] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-4fnfmoupp0] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/EmptyLayout.razor.rz.scp.css */
#blazor-error-ui[b-xc5qja2h5b] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-xc5qja2h5b] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/FrontLayout.razor.rz.scp.css */
#blazor-error-ui[b-4ifxfh4ydr] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-4ifxfh4ydr] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-9hvjshrmhi] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-9hvjshrmhi] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/RedirectToLogin.razor.rz.scp.css */
#blazor-error-ui[b-4s8eqpcxmr] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-4s8eqpcxmr] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Pages/DailyReport.razor.rz.scp.css */
.form-container[b-asdb7wngvn] {
    max-width: 900px; /* 稍微寬一點放多欄 */
    margin: 30px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
    border: 1px solid #e1e4e8;
}

.form-header[b-asdb7wngvn] {
    background: #f8f9fa;
    padding: 20px 30px;
    border-bottom: 1px solid #e9ecef;
}

    .form-header h2[b-asdb7wngvn] {
        margin: 0;
        color: #2c3e50;
        font-size: 1.5rem;
    }

    .form-header p[b-asdb7wngvn] {
        margin: 5px 0 0;
        color: #6c757d;
        font-size: 0.9rem;
    }

.form-body[b-asdb7wngvn] {
    padding: 30px;
}

/* 排版系統 */
.form-row[b-asdb7wngvn] {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group[b-asdb7wngvn] {
    margin-bottom: 15px;
    width: 100%;
}

.half-width[b-asdb7wngvn] {
    flex: 1;
}

.third-width[b-asdb7wngvn] {
    flex: 1;
}
/* 三欄式 */

label[b-asdb7wngvn] {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #343a40;
    font-size: 0.95rem;
}

.required[b-asdb7wngvn] {
    color: #dc3545;
    margin-left: 3px;
}

.form-input[b-asdb7wngvn], .form-select[b-asdb7wngvn] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.2s;
}

    .form-input:focus[b-asdb7wngvn], .form-select:focus[b-asdb7wngvn] {
        border-color: #594ae2;
        outline: none;
        box-shadow: 0 0 0 3px rgba(89, 74, 226, 0.1);
    }
    /* 唯讀欄位樣式 */
    .form-input[readonly][b-asdb7wngvn] {
        background-color: #e9ecef;
        color: #495057;
        cursor: default;
    }

/* Checkbox 列表 */
.checkbox-list[b-asdb7wngvn] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    padding: 15px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: #fafafa;
    max-height: 250px;
    overflow-y: auto;
}

.checkbox-item[b-asdb7wngvn] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: background 0.1s;
    user-select: none;
}

    .checkbox-item:hover[b-asdb7wngvn] {
        background: #e2e6ea;
    }

    .checkbox-item input[b-asdb7wngvn] {
        width: 16px;
        height: 16px;
        cursor: pointer;
        accent-color: #594ae2;
    }

.selected-summary[b-asdb7wngvn] {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #594ae2;
    font-weight: 500;
}

.form-actions[b-asdb7wngvn] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 25px;
    pt: 20px;
    border-top: 1px solid #f1f1f1;
}

.btn[b-asdb7wngvn] {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
}

.btn-primary[b-asdb7wngvn] {
    background: #594ae2;
    color: white;
}

    .btn-primary:hover[b-asdb7wngvn] {
        background: #4b3ecf;
    }

.btn-secondary[b-asdb7wngvn] {
    background: white;
    color: #6c757d;
    border: 1px solid #ced4da;
}

    .btn-secondary:hover[b-asdb7wngvn] {
        background: #f8f9fa;
    }
/* /Components/Pages/DailyReportForm.razor.rz.scp.css */
.form-container[b-92gt86orqz] {
    max-width: 900px; /* 稍微寬一點放多欄 */
    margin: 30px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
    border: 1px solid #e1e4e8;
}

.form-header[b-92gt86orqz] {
    background: #f8f9fa;
    padding: 20px 30px;
    border-bottom: 1px solid #e9ecef;
}

    .form-header h2[b-92gt86orqz] {
        margin: 0;
        color: #2c3e50;
        font-size: 1.5rem;
    }

    .form-header p[b-92gt86orqz] {
        margin: 5px 0 0;
        color: #6c757d;
        font-size: 0.9rem;
    }

.form-body[b-92gt86orqz] {
    padding: 30px;
}

/* 排版系統 */
.form-row[b-92gt86orqz] {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group[b-92gt86orqz] {
    margin-bottom: 15px;
    width: 100%;
}

.half-width[b-92gt86orqz] {
    flex: 1;
}

.third-width[b-92gt86orqz] {
    flex: 1;
}
/* 三欄式 */

label[b-92gt86orqz] {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #343a40;
    font-size: 0.95rem;
}

.required[b-92gt86orqz] {
    color: #dc3545;
    margin-left: 3px;
}

.form-input[b-92gt86orqz], .form-select[b-92gt86orqz] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.2s;
}

    .form-input:focus[b-92gt86orqz], .form-select:focus[b-92gt86orqz] {
        border-color: #594ae2;
        outline: none;
        box-shadow: 0 0 0 3px rgba(89, 74, 226, 0.1);
    }
    /* 唯讀欄位樣式 */
    .form-input[readonly][b-92gt86orqz] {
        background-color: #e9ecef;
        color: #495057;
        cursor: default;
    }

/* Checkbox 列表 */
.checkbox-list[b-92gt86orqz] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    padding: 15px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: #fafafa;
    max-height: 250px;
    overflow-y: auto;
}

.checkbox-item[b-92gt86orqz] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: background 0.1s;
    user-select: none;
}

    .checkbox-item:hover[b-92gt86orqz] {
        background: #e2e6ea;
    }

    .checkbox-item input[b-92gt86orqz] {
        width: 16px;
        height: 16px;
        cursor: pointer;
        accent-color: #594ae2;
    }

.selected-summary[b-92gt86orqz] {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #594ae2;
    font-weight: 500;
}

.form-actions[b-92gt86orqz] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 25px;
    pt: 20px;
    border-top: 1px solid #f1f1f1;
}

.btn[b-92gt86orqz] {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
}

.btn-primary[b-92gt86orqz] {
    background: #594ae2;
    color: white;
}

    .btn-primary:hover[b-92gt86orqz] {
        background: #4b3ecf;
    }

.btn-secondary[b-92gt86orqz] {
    background: white;
    color: #6c757d;
    border: 1px solid #ced4da;
}

    .btn-secondary:hover[b-92gt86orqz] {
        background: #f8f9fa;
    }
/* /Components/Pages/UserForm.razor.rz.scp.css */
/* 容器設定 */
.form-container[b-2n9b8btp7l] {
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: sans-serif;
    overflow: hidden;
}

/* 標頭 */
.form-header[b-2n9b8btp7l] {
    background: #f1f3f5;
    padding: 20px 30px;
    border-bottom: 1px solid #e9ecef;
}

    .form-header h2[b-2n9b8btp7l] {
        margin: 0;
        color: #333;
    }

    .form-header p[b-2n9b8btp7l] {
        margin: 5px 0 0;
        color: #666;
        font-size: 0.9rem;
    }

/* 內容區 */
.form-body[b-2n9b8btp7l] {
    padding: 30px;
}

/* 排版系統 */
.form-row[b-2n9b8btp7l] {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group[b-2n9b8btp7l] {
    margin-bottom: 15px;
    width: 100%;
}

.half-width[b-2n9b8btp7l] {
    flex: 1;
}

/* 標籤 */
label[b-2n9b8btp7l] {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #495057;
}

.required[b-2n9b8btp7l] {
    color: red;
}

/* 輸入框 & 下拉選單 */
.form-input[b-2n9b8btp7l], .form-select[b-2n9b8btp7l] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

    .form-input:focus[b-2n9b8btp7l], .form-select:focus[b-2n9b8btp7l] {
        border-color: #80bdff;
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
    }

    .form-input:disabled[b-2n9b8btp7l] {
        background: #e9ecef;
        cursor: not-allowed;
    }

/* 按鈕樣式 */
.form-actions[b-2n9b8btp7l] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.btn[b-2n9b8btp7l] {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary[b-2n9b8btp7l] {
    background: #007bff;
    color: white;
}

.btn-secondary[b-2n9b8btp7l] {
    background: #6c757d;
    color: white;
}

.btn:hover[b-2n9b8btp7l] {
    opacity: 0.9;
}

/* Switch 開關樣式 */
.checkbox-group[b-2n9b8btp7l] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.switch[b-2n9b8btp7l] {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

    .switch input[b-2n9b8btp7l] {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider[b-2n9b8btp7l] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

    .slider[b-2n9b8btp7l]:before {
        position: absolute;
        content: "";
        height: 20px;
        width: 20px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .slider[b-2n9b8btp7l] {
    background-color: #28a745;
}

    input:checked + .slider[b-2n9b8btp7l]:before {
        transform: translateX(24px);
    }

.switch-label[b-2n9b8btp7l] {
    font-weight: bold;
    color: #495057;
}
