/* 711 超商物流選擇區域樣式 */
#store711_selection_row {
    border-top: 1px solid #ddd;
}

#store711_selection {
    margin: 15px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

#store711_selection h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

#store711_selected {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
}

#select_store711_btn {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
    width: 100%;
    max-width: 200px;
}

#select_store711_btn:hover {
    background-color: #e55a2b;
}

#select_store711_btn:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

.store711-info {
    margin-top: 15px;
    padding: 15px;
    background-color: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 5px;
    border-left: 4px solid #4caf50;
}

.store711-info strong {
    color: #2e7d32;
    display: block;
    margin-bottom: 8px;
}

.store-name {
    font-weight: bold;
    margin: 5px 0;
    color: #333;
    font-size: 15px;
}

.store-address,
.store-outside,
.store-ship {
    color: #666;
    margin: 3px 0;
    font-size: 13px;
}

.store-id {
    color: #888;
    font-size: 12px;
    margin: 3px 0;
    font-family: monospace;
}

/* WooCommerce 錯誤和成功訊息樣式調整 */
.woocommerce-message {
    background-color: #e8f5e8;
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}

/* 響應式設計 */
@media (max-width: 768px) {
    #store711_selection {
        margin: 10px 0;
        padding: 15px;
    }

    #select_store711_btn {
        width: 100%;
        padding: 12px;
        max-width: none;
    }

    .store711-info {
        padding: 12px;
    }
}