/* ============================================================
   Uod Sales Report Plugin - style.css
   管理画面（一覧テーブル・CSVフォーム）と
   フロント（売上報告フォーム）のスタイルを一括管理します。
   ============================================================ */


/* ============================================================
   フロント：フォームラッパー（ブランド別背景色）
   新ブランド追加時はここに .UR_inner_xxx を追加してください
   ============================================================ */

/* 魚丼：水色系 */
.UR_inner {
    background: #e8f4fd;
    padding: 1em 2em 2em 2em;
    border-top: 5px solid #5aacdc;
}
/* 膳じろう：温かみのある黄色系 */
.UR_inner_zen {
    background: #fff8e1;
    padding: 1em 2em 2em 2em;
    border-top: 5px solid #f5c518;
}
/* ねぎとろキング：緑系 */
.UR_inner_king {
    background: #e8f5e9;
    padding: 1em 2em 2em 2em;
    border-top: 5px solid #5dae6e;
}
/* のり福：青緑系 */
.UR_inner_norihuku {
    background: #e0f7fa;
    padding: 1em 2em 2em 2em;
    border-top: 5px solid #26b5c8;
}
/* 納豆：オレンジ系 */
.UR_inner_natto {
    background: #fff3e0;
    padding: 1em 2em 2em 2em;
    border-top: 5px solid #f0903a;
}
/* サーモンテイク：ピンク系 */
.UR_inner_salmontake {
    background: #fce4ec;
    padding: 1em 2em 2em 2em;
    border-top: 5px solid #e8728a;
}


/* ============================================================
   フロント：フォーム入力欄
   ============================================================ */
input[type="email"],
input[type="text"],
input[type="file"],
select,
textarea {
    background-color: white;
}

input[type="number"] {
    background-color: white;
    text-align: right;
}

select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus {
    background-color: #FFFDE7;
}


/* ============================================================
   フロント：ラベル
   ============================================================ */
.UR_label {
    margin: 2em 0 0;
    color: #5a5a5a;
    position: relative;
    padding-left: 27px;
}

.UR_label:before {
    content: "\f304";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 5px;
    color: #999999;
}

.UR_sub {
    margin-left: 4em !important;
}

.UR_sub_title {
    margin-left: 4em !important;
    margin-bottom: -2em !important;
    font-weight: bold;
}

.UR_top {
    margin-top: 0 !important;
}


/* ============================================================
   フロント：送信ボタン・必須ラベル
   ============================================================ */
input[type="submit"] {
    background-color: #91D2FA;
    font-size: 18px;
    letter-spacing: 6px;
    margin: 0;
    padding: .5em;
    width: 100%;
    border-radius: 10px;
    border-color: white;
    color: white;
    font-weight: bold;
}

.UR_sousin {
    text-align: center;
    padding: 4em 2em 2em 2em;
}

span.hissu {
    display: inline-block;
    background: #e46c65;
    padding: 0 10px;
    font-size: 14px;
    color: white;
    letter-spacing: 3px;
    border-radius: 3px;
    margin-left: 15px;
    vertical-align: text-bottom;
}


/* ============================================================
   管理画面：年月フォーム
   ============================================================ */
.sales-form {
    margin: 40px 20px;
}


/* ============================================================
   管理画面：一覧テーブル
   ============================================================ */
div.uod_report {
    overflow-x: scroll;
    max-width: 90%;
}

.uod_report table {
    white-space: nowrap;
    border-collapse: collapse;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

.uod_report table tr {
    background-color: #fff;
    border: 1px solid #bbb;
    padding: .35em;
}

.uod_report table th,
.uod_report table td {
    padding: 8px 10px;
    border-right: 1px solid #bbb;
}

.uod_report table th {
    font-size: .85em;
    text-align: center;
    background-color: #AE431E;
    color: #fff;
}

.uod_report table thead tr {
    background-color: #eee;
}

.uod_report table tr:nth-child(even) {
    background-color: #eee;
}

.uod_report input[type=number] {
    width: 90px;
}
