﻿

/*html {*/
/*zoom: 0.9;*/ /*全站縮小成 90% */
/*font-size: smaller;
}*/

/*.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1200px;*/ /* 原本是 1320px，這樣會比較集中 */
/*}*/

/* ====== #region Main Page專用 - SN驗證頁面或登入頁面  ======*/
.roast-mainpage {
    max-width: 600px;
    margin: 100px auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding-top: 50px; /* 預留 header 高度，避免內容被壓住 */
}

    .roast-mainpage p {
        text-align: center;
        color: #666;
        font-size: 16px;
        margin-bottom: 30px;
    }

    .roast-mainpage label {
        display: block;
        font-weight: bold;
        margin-bottom: 8px;
    }

    .roast-mainpage input[type="text"] {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        border-radius: 4px;
        border: 1px solid #ccc;
        margin-bottom: 20px;
    }

    .roast-mainpage button {
        width: 100%;
        background-color: #2c3e50;
        color: white;
        font-size: 16px;
        padding: 12px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

        .roast-mainpage button:hover {
            background-color: #1a242f;
        }

    .roast-mainpage p {
        text-align: center;
        color: #666;
        font-size: 16px;
        margin-bottom: 30px;
    }

    .roast-mainpage label {
        display: block;
        font-weight: bold;
        margin-bottom: 8px;
    }

    .roast-mainpage input[type="text"] {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        border-radius: 4px;
        border: 1px solid #ccc;
        margin-bottom: 20px;
    }

    .roast-mainpage button {
        width: 100%;
        background-color: #2c3e50;
        color: white;
        font-size: 16px;
        padding: 12px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

        .roast-mainpage button:hover {
            background-color: #1a242f;
        }

/* ====== #endregion Main Page專用 - SN驗證頁面或登入頁面  ======*/
/* ===========================================================*/



/* ====== #region Header專用 ======*/
.roast-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: grid;
    grid-template-columns: auto 1fr auto; /* 左 自動 / 中 伸縮 / 右 自動 */
    align-items: center;
    background: #1f1f1f;
    color: #fff;
    padding: 0 20px;
    height: 80px;
    box-sizing: border-box;
}

/* 預留 header 高度避免內容被蓋住 */
.roast-header-spacer {
    height: 200px;
}

/* 左區：標題 + 副標 */
/*.roast-header-left {
    display: flex;
    margin: 10px 10px auto;*/
/*align-items: center;*/ /* 垂直置中 */
/*}*/

/* 中央置中的 Roast Header */
/*.roast-header-middle {*/
/*display: flex;*/
/*justify-content: center;*/ /* 水平置中 */
/*align-items: center;*/ /* 垂直置中 */
/*text-align: center;
    background-color: #222;*/ /* 背景黑 */
/*color: #fff;*/ /* 文字白 */
/*margin: 10px auto;
}*/
.roast-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
}

.roast-subtitle {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* 右區：帳號 + 登出 */
/*.roast-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .roast-header-right .header-link {
        color: #fff;
        text-decoration: none;
        padding: 6px 12px;
        border-radius: 4px;
        transition: background 0.2s;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 4px;*/ /* icon 和文字間距 */
/*}

        .roast-header-right .header-link:hover {
            background: #444;
        }*/

/* 左、右*/
.roast-header-left {
    grid-column: 1;
    display: flex;
    align-items: center;
}

.roast-header-right {
    grid-column: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
}

/* 中間：跨整列並以整體置中，不受左右寬度影響 */
.roast-header-middle {
    justify-self: center; /* 以整個 header 置中 */
    text-align: center;
    pointer-events: none; /* 避免遮住左右可點元素（中間若要可點再拿掉） */
    transform: translateX(-50%);
}

/* 中間：跨整列並以整體置中 */
.roast-header-center {
    justify-self: center; /* 以整個 header 置中 */
    text-align: center;
    pointer-events: none; /* 避免遮住左右可點元素（中間若要可點再拿掉） */
}

/* 細節美化 */
.brand {
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.5;
}

    .brand a {
        color: #fff;
        text-decoration: none;
    }

.logout-btn {
    background: #c0392b;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
}

    .logout-btn:hover {
        background: #e74c3c;
    }


/* 中央置中的 Roast Header of Curve */
.roast-header-center-curve {
    height: 90px;
    display: flex;
    align-items: center;
    background: #222;
    color: #fff;
    padding: 10px;
    position: fixed; /* 固定在視窗 */
    z-index: 1000; /* 確保在最上層 */
    width: 100%;
    top: 0;
    left: 0;
    /*    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1f1f1f;
    color: #fff;
    padding: 0 20px;
    height: 70px;
    box-sizing: border-box;*/
}

    .roast-header-center-curve .header-left {
        position: absolute;
        left: 20px;
    }

    .roast-header-center-curve .header-right {
        /*        position: absolute;
        right: 20px;*/

        position: absolute;
        right: 20px;
        display: flex;
        align-items: center;
        gap: 12px; /* SN 與按鈕間距 */
    }

    .roast-header-center-curve .header-center {
        flex: 2;
        text-align: center;
        position: absolute;
        display: flex;
        left: 50px;
    }

    .roast-header-center-curve .roast-title {
        font-size: 28px;
        margin: 0;
    }





/* 中央置中的 Roast Header */
/*.roast-header-center {
    display: flex;
    justify-content: center;*/ /* 水平置中 */
/*align-items: center;*/ /* 垂直置中 */
/*text-align: center;
    padding: 20px 0;
    background-color: #222;*/ /* 背景黑 */
/*color: #fff;*/ /* 文字白 */
/*}

    .roast-header-center .roast-title {
        font-size: 32px;
        font-weight: 700;
        margin: 0;
    }*/

.account-info {
    font-size: 14px;
    opacity: 0.9;
}

.logout-btn {
    background: #c0392b;
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

    .logout-btn:hover {
        background: #e74c3c;
    }


/* ====== #endregion Header專用 ======*/
/* ==================================*/




/* ====== 共用 Roast Page 基底 ====== */
.roast-page {
    font-family: "Microsoft YaHei", "Microsoft JhengHei", Arial, sans-serif;
    margin: 0;
    /*display: block;*/
    padding-top: 80px; /* 預留 header 高度，避免內容被壓住 */
    /*min-height: 100%;*/
    /*min-height: calc(100vh - 110px);*/ /* header + footer 高度 */
}

    .roast-page .container {
        /*max-width: 1200px;*/
        margin: 0 auto;
        padding: 0px 0px;
    }

    /* ====== 原 page-curve 樣式 => roast-page.curve ====== */
    .roast-page.curve {
        background-color: #f5f5f5;
        padding-top: 80px;
        padding-bottom: 60px;
    }

        .roast-page.curve .hero {
            background-color: #000;
            color: #fff;
            padding: 20px 0;
            position: relative;
            text-align: center;
        }

            .roast-page.curve .hero h1 {
                margin: 0;
                font-size: 28px;
                font-weight: 700;
                letter-spacing: .5px;
            }

            .roast-page.curve .hero p {
                margin: 4px 0 0 0;
                font-size: 15px;
                opacity: .9;
            }

            .roast-page.curve .hero .logout-form {
                position: absolute;
                top: 12px;
                right: 20px;
            }

            .roast-page.curve .hero .logout-btn {
                background: transparent;
                border: 1px solid #fff;
                color: #fff;
                padding: 6px 14px;
                border-radius: 4px;
                font-size: 14px;
                cursor: pointer;
            }

                .roast-page.curve .hero .logout-btn:hover {
                    background: #fff;
                    color: #000;
                }

        .roast-page.curve .content-wrapper {
            max-width: 1400px; /* 和 container 一樣的寬度 */
            margin: 0 auto; /* 水平置中 */
            padding: 0 20px; /* 左右留點空白 */
        }

        .roast-page.curve .filter-bar {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
            align-items: center;
        }

            .roast-page.curve .filter-bar select,
            .roast-page.curve .filter-bar input {
                padding: 8px;
                font-size: 16px;
            }

            .roast-page.curve .filter-bar button {
                padding: 8px 16px;
                font-size: 16px;
                background-color: #c0392b;
                color: white;
                border: none;
                border-radius: 4px;
                cursor: pointer;
            }

        .roast-page.curve .curve-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 10px;
        }

        .roast-page.curve .curve-card {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            padding: 20px;
        }

        /* .roast-page.curve .curve-chart-placeholder {
            height: 150px;
            background: #e0e0e0;
            border-radius: 4px;
            margin-bottom: 10px;
        }*/

        .roast-page.curve .curve-chart-placeholder {
            height: 150px;
            background: #f8f9fa; /* 換成淺灰，比 e0e0e0 更柔和 */
            border-radius: 6px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden; /* 多餘部分裁切 */
        }

            .roast-page.curve .curve-chart-placeholder img {
                width: 100%;
                height: 150px;
                object-fit: cover; /* 保持比例，自動裁切 */
                border-radius: 6px;
            }

        .roast-page.curve .curve-info {
            font-size: 14px;
            line-height: 1.6;
        }

        .roast-page.curve .curve-actions {
            margin-top: 10px;
            display: flex;
            gap: 10px;
        }

            .roast-page.curve .curve-actions button {
                padding: 6px 12px;
                font-size: 14px;
                cursor: pointer;
                border: none;
                background: #333;
                color: #fff;
                border-radius: 4px;
            }

        .roast-page.curve .favorited {
            background-color: #e74c3c !important;
        }

        .roast-page.curve footer {
            text-align: center;
            padding: 30px;
            font-size: 14px;
            color: #888;
        }

        .roast-page.curve .container {
            max-width: 100% !important;
            width: 100% !important;
            margin: 0;
            padding-left: 0;
            padding-right: 0;
        }

    /* ====== 原 page-curvemanager 樣式 => roast-page.manager ====== */
    .roast-page.manager {
        background-color: #f4f4f4;
        /*max-width:1200px;*/
        /*zoom:0.94;*/
    }

        .roast-page.manager .dashboard {
            display: flex;
            /*min-height: calc(100vh - 110px);*/
            min-height: 100vh;
        }

        .roast-page.manager .sidebar {
            width: 180px;
            min-width: 180px;
            background-color: #2c3e50;
            padding: 20px;
            color: white;
        }

            .roast-page.manager .sidebar h2 {
                font-size: 20px;
                margin-bottom: 20px;
            }

            .roast-page.manager .sidebar a {
                display: block;
                color: #ecf0f1;
                text-decoration: none;
                margin: 0px 0;
                padding: 8px;
                border-radius: 4px;
            }

                .roast-page.manager .sidebar a:hover {
                    background-color: #34495e;
                }

        .roast-page.manager .main {
            flex: 1;
            padding: 10px;
            padding-bottom: 60px; /* 預留 footer 高度 */
            background-color: #fff;
            /*min-height: calc(100vh - 70px);*/
        }

            .roast-page.manager .main h2 {
                color: #333;
                margin-bottom: 20px;
            }

        .roast-page.manager table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
            /*table-layout: fixed;*/
        }

        .roast-page.manager th,
        .roast-page.manager td {
            border-bottom: 1px solid #ccc;
            padding: 6px;
            text-align: left;
            font-size: 14px;
        }

        .roast-page.manager th {
            background-color: #f0f0f0;
        }

        .roast-page.manager button {
            padding: 6px 12px;
            font-size: 14px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        .roast-page.manager .btn-primary {
            background-color: #2c3e50;
            color: #fff;
        }

        .roast-page.manager .btn-secondary {
            background-color: #e74c3c;
            color: #fff;
        }

/* Header */
/*.roast-header-center {
    padding: 20px 0;
    background-color: #222;
    color: #fff;
    text-align: center;
}

    .roast-header-center .roast-title {
        font-size: 32px;
        margin: 0;
    }*/

.roast-page-faq {
    font-family: "Microsoft YaHei", "Microsoft JhengHei", Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    display: block;
    background-color: #f9f9f9;
    padding-top: 80px;
    /*padding-bottom: 60px;*/
}

    /* Nav */
    .roast-page-faq .faq-nav {
        border-bottom: 1px solid #ddd;
        z-index: 1020;
    }

        .roast-page-faq .faq-nav .nav-link {
            color: #333;
            font-weight: 500;
            padding: 10px 20px;
        }

            .roast-page-faq .faq-nav .nav-link.active,
            .roast-page-faq .faq-nav .nav-link:hover {
                background-color: #0d6efd;
                color: #fff;
            }

    /* Q/A Card */
    .roast-page-faq .btn-light {
        background-color: #fff;
        border: 1px solid #ddd;
        font-weight: 600;
    }

        .roast-page-faq .btn-light:hover {
            background-color: #f1f1f1;
        }

    .roast-page-faq .card-body {
        text-align: left;
        font-size: 15px;
        line-height: 1.6;
    }

/* Only color the Q (accordion header button); keep A body white */
.faq-q-header .accordion-button {
    background-color: #fdf2e9; /* 淡橘色 */
}

    .faq-q-header .accordion-button:not(.collapsed) {
        background-color: #fdf2e9;
        box-shadow: none;
    }
/* Optional: subtly separate items */
.roast-page-faq .accordion-item {
    border: 1px solid #eee;
    border-radius: .5rem;
    overflow: hidden;
}

    .roast-page-faq .accordion-item + .accordion-item {
        margin-top: .5rem;
    }

/* Only color the Q (accordion header button); keep A body white */
.faq-q-header .accordion-button {
    background-color: #7498f2;
}

    .faq-q-header .accordion-button:not(.collapsed) {
        background-color: #7498f2;
        box-shadow: none;
    }
/* Optional: subtly separate items */
.roast-page-faq .accordion-item {
    border: 1px solid #eee;
    border-radius: .5rem;
    overflow: hidden;
}

    .roast-page-faq .accordion-item + .accordion-item {
        margin-top: .5rem;
    }

.faq-list .card {
    width: 100%;
    max-height: 200px;
}



/* 按鈕群：同一行排列＋間距 */
.action-bar {
    display: inline-flex;
    gap: 8px;
    flex-wrap: nowrap;
}

    .action-bar .btn {
        padding: 6px 12px;
        font-size: 13px;
        border-radius: 6px;
    }



/* 文字過長省略（給風味/豆種等可長文字欄） */
.td--truncate {
    max-width: 320px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}



/* 分頁器與表格間距 */
.roast-pagination {
    display: flex;
    justify-content: left;
}

/* 分頁器配色（與前一則一致） */
.pagination .page-link {
    color: #333 !important;
    background-color: #fff;
    border: 1px solid #ddd;
}

    .pagination .page-link:hover {
        color: #fff !important;
        background-color: #0d6efd;
        border-color: #0d6efd;
    }

.pagination .page-item.active .page-link {
    color: #fff !important;
    background-color: #0d6efd !important;
    border-color: #0d6efd !important;
}

/* 行內徽章（焙度/狀態可用） */
.badge-soft {
    display: inline-block;
    padding: .25rem .5rem;
    font-size: .75rem;
    border-radius: .5rem;
    background: #eef5ff;
    color: #0d6efd;
}


/***********TABLE設定**************/

/*.manager-table {
    width: auto;
    border-collapse: collapse;
    min-width: 1200px;*/ /* 設定整張表至少 1400px，超過容器就會觸發橫向捲動 */
/*white-space: nowrap;*/ /* 禁止自動換行 */
/*}

    .manager-table th, .manager-table td {
        padding: 12px;
        text-align: left;
        border: 1px solid #ddd;
    }

    .manager-table th {
        background-color: #f2f2f2;
    }*/


/* 外框卡片 */
.roast-table-wrap {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,.06);
    overflow: hidden;
    /*margin-top: 16px;*/
}

/* 表格本體 */
.roast-table {
    /*width: 100%;*/ 
    border-spacing: 0;
    font-size: 12px;
    line-height: 1;
    min-width: 2000px; /*設定整張表至少 1400px，超過容器就會觸發橫向捲動 */
    border: 1px solid #ddd;
    /*white-space: nowrap;*/ /*禁止自動換行 */
    table-layout: fixed;
    border-collapse: collapse;
}

    .roast-table th,
    .roast-table td {
        border: 1px solid #ddd; /* 先給四邊淺灰 */
        padding: 12px 14px;
        text-align: left;
    }

        .roast-table th.wrap,
        .roast-table td.wrap {
            width: 400px;
            white-space: normal;
            word-break: break-all;
            overflow-wrap: anywhere;
        }


    .roast-table th {
        background: #f7f8fa;
        color: #333;
        font-weight: 700;
        white-space: nowrap;
    }

    .roast-table td {
        border-bottom: 1px solid #e6e9ef; /* 單獨覆蓋底線 */
        vertical-align: middle;
        color: #222;
    }
    /* 讓需要自動換行的 td 生效 */
    /*.roast-table td.force-wrap {
            white-space: normal !important;*/ /* 🔴 強制覆蓋 nowrap */
    /*word-break: break-word;*/ /* 🔴 長字也能斷行 */
    /*}*/

    /* 欄寬規劃：讓整體視覺平衡 */
    .roast-table .col-id {
        width: 160px;
        white-space: nowrap;
        color: #555;
    }

    .roast-table .col-type {
        width: 120px;
        white-space: nowrap;
    }

    .roast-table .col-lang {
        width: 80px;
        white-space: nowrap;
        text-align: center;
    }

    .roast-table .col-actions {
        width: 200px;
        white-space: nowrap;
        text-align: right;
    }

    /* 小尺寸按鈕群（搭配 Bootstrap） */
    .roast-table .btn {
        padding: 6px 12px;
        font-size: 13px;
        border-radius: 6px;
    }

/*        .roast-table .btn + .btn {
            margin-left: 8px;
        }*/

滑過高亮、斑馬紋（可選）
.roast-table tbody tr:nth-child(even) {
    background: #fbfcfe;
}

.roast-table tbody tr:hover {
    background: #eef5ff;
}

/* 回答欄：多行省略（兩行），讓版面不被撐爆 */
.td-clip-2 {
    max-width: 600px; /* 視畫面可調 */
    -webkit-line-clamp: 3; /*兩行截斷 */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal !important; /* 🔴 強制覆蓋 nowrap */
    word-break: break-word; /* 🔴 長字也能斷行 */
    height: auto;
    max-height: 100px;
}


.readonly {
    pointer-events: none;
    background: #f6f6f6;
}


.notice-box {
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.9rem; /* 整體字體稍微縮小 */
    line-height: 1.5; /* 行距維持可讀性 */
    padding: 8px 12px; /* 內邊距比預設 alert 小 */
    font-weight: bold; /* 粗體 */
}

    .notice-box h6 {
        font-size: 1rem; /* 標題也比預設小 */
    }



.favorite-btn-group {
    display: flex;
    align-items: center;
    gap: 8px; /* 按鈕間距 */
}

/* 收藏按鈕 */
.favorite-btn {
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #dc3545;
    border-radius: 6px;
    background-color: #fff;
    color: #dc3545;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .favorite-btn.active {
        background-color: #dc3545;
        color: #fff;
    }

/* 清除按鈕 */
.clear-btn {
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    background-color: #6c757d; /* 灰色 */
    color: #fff;
    text-decoration: none; /* 移除超連結底線 */
    display: inline-block;
    transition: background-color 0.2s ease;
}

    .clear-btn:hover {
        background-color: #5a6268;
        color: #fff;
    }


/* 推薦按鈕 */

.recommend-btn {
    padding: 6px 14px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    border-radius: 6px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    border-color: #0d6efd;
    color: #0d6efd;
}

    .recommend-btn.active {
        background-color: #0d6efd;
        color: #fff;
    }

.table-wrapper {
    overflow-x: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* iOS 慣性滑動 */
}





/* 手機響應式 */
@media (max-width: 576px) {
}


/* 手機調整：縮小回答欄、允許操作鈕自動換成兩列 */
@media (max-width: 768px) {

    .roast-header {
        flex-direction: column;
        height: 90px;
        padding: 10px;
        text-align: center;
    }

    .roast-header-spacer {
        height: auto;
    }

    .roast-header-right {
        margin-top: 8px;
    }

    .roast-page {
        padding-top: 130px;
    }

    .roast-title {
        font-size: 1.1rem; /* 整體字體稍微縮小 */
    }

    .roast-subtitle {
        font-size: 0.6rem; /* 整體字體稍微縮小 */
    }

    .account-info {
        font-size: 0.8rem; /* 整體字體稍微縮小 */
    }

    .brand {
        font-size: 0.8rem; /* 整體字體稍微縮小 */
    }

    /*後台手機版面*/
    .roast-page {
        padding-top: 60px; /* 預留 header 高度，避免內容被壓住 */
    }

        .roast-page.manager .roast-title {
            margin: 10px auto;
        }

        .roast-page.manager .sidebar {
            font-size: 0.9rem; /* 整體字體稍微縮小 */
            padding: 10px;
            min-width: 100px;
            width: 100px;
        }

    /*CURVE曲線下載頁面手機版面*/
    .roast-header-center-curve {
        height: 90px;
    }

        .roast-header-center-curve .header-left {
        }

        .roast-header-center-curve .header-right {
            text-align: left;
            position: center;
            right: 10px;
            top: 0px;
            display: flex;
            align-items: normal;
            gap: 100px; /* SN 與按鈕間距 */
        }

        .roast-header-center-curve .header-center {
        }

        .roast-header-center-curve .roast-title {
        }


    .roast-page.curve {
        background-color: #f5f5f5;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .td-clip-2 {
        max-width: 260px;
        -webkit-line-clamp: 3;
    }

    .roast-table .col-actions {
        width: 100%;
        text-align: left;
    }

    .action-bar {
        flex-wrap: wrap;
        gap: 6px;
    }

    .notice-box {
        max-width: 1400px;
        margin: 0 auto;
        font-size: 0.8rem; /* 整體字體稍微縮小 */
        line-height: 1.5; /* 行距維持可讀性 */
        padding: 8px 12px; /* 內邊距比預設 alert 小 */
        font-weight: bold; /* 粗體 */
    }

        .notice-box h6 {
            font-size: 1rem; /* 標題也比預設小 */
        }

    .roast-mainpage p {
        font-size: 12px;
    }
}


