@charset "utf-8";
/* CSS Document */

/* Department Entry Buttons Design */
.dept-entry-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 25px;
    margin-bottom: 30px;
}

.entry-note {
    font-size: 0.9rem;
    color: #e74c3c;
    margin-top: -20px;
    margin-bottom: 25px;
    font-weight: bold;
    text-align: center;
}

.dept-col {
    flex: 1;
    min-width: 250px;
}

.dept-label {
    font-weight: bold;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #2c3e50;
    border-left: 4px solid #7fb069;
    padding-left: 10px;
}

.dept-col:last-child .dept-label {
    border-left-color: #f1c40f;
}

.btn-group {
    display: flex;
    gap: 15px;
}

.btn-summit {
    flex: 1;
    text-decoration: none;
    color: #333 !important;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 18px 10px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    cursor: pointer;
}

.btn-summit:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    filter: brightness(1.02);
}

.btn-summit:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}

/* 青果物部門 (Produce) - Green Palette */
.btn-produce {
    background: linear-gradient(135deg, #e2f0d9 0%, #a9d18e 100%);
    border-color: #8bb374;
}

/* 加工品部門 (Processed) - Yellow Palette */
.btn-processed {
    background: linear-gradient(135deg, #fff2cc 0%, #ffd966 100%);
    border-color: #e6b422;
}

/* Responsive adjustment */
@media screen and (max-width: 768px) {
    .btn-group {
        flex-direction: column;
    }

    .dept-entry-container {
        flex-direction: column;
        gap: 20px;
    }
}

/* Update Notice */
.update-notice {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ff0d00;
    border-left: 10px solid #e74c3c;
    padding: 18px 20px;
    margin-bottom: 25px;
    text-decoration: underline;
    color: #e74c3c !important;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.1);
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.update-notice:hover {
    background: #fff8f8;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.15);
    text-decoration: underline !important;
}



.update-notice i {
    margin-right: 12px;
    font-size: 1.2rem;
    color: #e74c3c;
}

/* Fee Section Layout */
.fee-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}

.fee-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #eee;
    transition: transform 0.3s ease;
}

.fee-card:hover {
    transform: translateY(-2px);
}

.fee-card.produce {
    border-top-color: #7fb069;
}

.fee-card.processed {
    border-top-color: #f1c40f;
}

.fee-card h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
}

.fee-card h5 i {
    margin-right: 8px;
    opacity: 0.7;
}

.fee-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fee-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    font-size: 0.95rem;
    color: #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fee-list li:last-child {
    border-bottom: none;
}

.fee-price {
    font-weight: bold;
    color: #2c3e50;
    font-size: 1.05rem;
}

.fee-note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 10px;
    line-height: 1.4;
}

@media screen and (max-width: 600px) {
    .fee-wrapper {
        flex-direction: column;
    }
}

/* Guide Download Button */
.guide-area {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.btn-guide {
    display: inline-flex;
    align-items: center;
    background: #34495e;
    color: #fff !important;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}

.btn-guide p {
    margin: 0;
    padding: 0;
}

.btn-guide:hover {
    background: #2c3e50;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: #fff !important;
}

.btn-guide i {
    margin-left: 12px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-guide:hover i {
    transform: translateX(4px);
}

/* Results Information Scrollbar */
.summit19_in {
    height: 300px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
    box-sizing: border-box;
    background-color: #f9f9f9;
}

.summit19_in::-webkit-scrollbar {
    width: 8px;
}

.summit19_in::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
}

.summit19_in::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.summit19_in::-webkit-scrollbar-track {
    background-color: #eee;
}

/* Legacy Department / Tomato Summit Styles */
.tomato_summit1 {
    font-size: 1.1em;
    padding: 10px 7px 15px;
    margin: 7px;
    border-radius: 5px;
    display: inline-block;
    background: #efeed9;
}

.tomato_summit1 th {
    display: inline-block;
    padding: 29px 11px;
    background: #f5b1a6;
    white-space: nowrap;
    color: #000;
    font-weight: bold;
    border-radius: 50%;
    font-size: 1.1em !important;
    border-color: #efeed9;
}

.tomato_summit1 td {
    font-weight: normal;
}

.tomato_summit1 td span {
    display: block;
    font-size: .8em;
}

.tomato_summit1 p {
    padding: 0 0 2px;
    margin: 0 0 2px;
    border-bottom: 2px dashed #f5b1a5;
    display: inline-block;
}

.tomato_summit_link a {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 2px 15px;
    margin: 10px 10px 0px 0;
    text-align: center;
    font-size: .8em;
    border-radius: 50px;
}