        .weather_container {
            min-height: 100vh;
            padding: 20px;
            color: #333;
            max-width: 1000px;
            margin: 0 auto;
        }
        .weather_container .header {
            text-align: center;
            color: #582800;
            margin-bottom: 30px;
        }
        .weather_container .loading {
            text-align: center;
            color: white;
            font-size: 1.2rem;
            margin: 50px 0;
        }
        .weather_container .error {
            background: #008435;
            color: white;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin: 20px 0;
            border: 1px solid #4a5f7a;
        }
        .weather_container table{
            width: 100%!important;
        }
        /* リアルタイム天気比較 */
        .weather_container .current-weather-section {
            padding-bottom: 20px;
            margin-bottom: 0;
        }
        .weather_container .current-weather-title {
            font-size: 1.5rem;
            color: #582800;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 400;
            margin-top: 0;
            font-size: clamp(12px, 3vw, 18px);
        }
        .weather_container .current-weather-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .weather_container .current-weather-table th {
            background: linear-gradient(-10deg, #accf53 0%, #008435 100%);
            color: white;
            padding: 15px 10px;
            font-weight: 500;
            text-align: center;
            font-size: clamp(12px, 3vw, 18px);
        }
        .weather_container .current-weather-table th:first-child {
            background: #008435;
        }
        .weather_container .current-weather-table td {
            padding: 20px 15px;
            text-align: center;
            border-bottom: 1px solid #ecf0f1;
            vertical-align: middle;
        }
        .weather_container .current-weather-table td:first-child{
            background: #f8f9fa;
            font-weight: 600;
            color: #2c3e50;
            border-right: 2px solid #ecf0f1;
            white-space: pre;
        }

        .weather_container .current-weather-table tbody tr:last-child td {
            border-bottom: none;
        }
        .weather_container .current-temp {
            font-size: 2.2rem;
            font-weight: 300;
            color: #2c3e50;
        }
        .weather_container .current-icon {
            font-size: 2.5rem;
        }
        .weather_container .current-details {
            font-size: 0.9rem;
            color: #7f8c8d;
            line-height: 1.4;
        }
        /* 7日間予報セクション */
        .weather_container .forecast-section {
            border-radius: 15px;
            padding-bottom: 20px;
            overflow-x: auto;
        }
        .weather_container .forecast-title {
            font-size: 1.5rem;
            color: #582800;
            text-align: center;
            font-weight: 400;
            margin-top: 15px;     
            margin-bottom: 20px;   
            font-size: clamp(12px, 3vw, 18px);    
        }
        .weather_container .forecast-table {
            width: 100%;
            min-width: 700px;
            border-collapse: collapse;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .weather_container .forecast-table th {
            background: linear-gradient(-10deg, #accf53 0%, #008435 100%);
            color: white;
            padding: 15px 8px;
            font-weight: 500;
            text-align: center;
            font-size: 0.9rem;
            white-space: nowrap;
        }
        .weather_container .forecast-table th:first-child {
            background: #008435;
            width: 80px;
        }
        .weather_container .forecast-table td {
            padding: 15px 8px;
            text-align: center;
            border-bottom: 1px solid #ecf0f1;
            vertical-align: middle;
        }
        .weather_container .forecast-table td:first-child {
            background: #f8f9fa;
            font-weight: 600;
            color: #2c3e50;
            border-right: 2px solid #ecf0f1;
            white-space: pre;
        }
        .weather_container .forecast-table tbody tr:last-child td {
            border-bottom: none;
        }
        .weather_container .weather-icon {
            font-size: 1.8rem;
            margin: 5px 0;
            display: block;
        }
        .weather_container .temps {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 3px;
            color: #34495e;
            white-space: pre;
        }
        .weather_container .rain {
            font-size: 0.8rem;
            color: #7f8c8d;
            font-weight: 500;
        }
        .weather_container .refresh-btn {
            background:#008435;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            display: block;
            margin: 30px auto 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            font-weight: 400;
            display: none;
        }
        .weather_container .refresh-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            background:#accf53;
        }
        .weather_container .refresh-btn:active {
            transform: translateY(0);
        }
        .weather_container img{
            object-fit: contain!important;
            width: 100%;
            height: 100%;
            max-width: 80px;
        }
        .weather_container .current-icon{
            width: 12%;
        }
        @media (max-width: 1024px) {
            .weather_container .forecast-table th, .weather_container .forecast-table td {
                padding: 12px 6px;
            }
            .weather_container .weather-icon {
                font-size: 1.6rem;
            }
        }
        @media (max-width: 768px) {
            .weather_container .forecast-table {
                min-width: 600px;
            }
            .weather_container .current-weather-table th, .weather_container .current-weather-table td {
                padding: 12px 8px;
            }
            .weather_container .current-temp {
                font-size: 1.8rem;
            }
            .weather_container .current-icon {
                font-size: 2rem;
            }
        }
        @media (max-width: 640px) {
            .weather_container .forecast-section{
            border-radius: 10px;
            }
            .weather_container .current-icon{
                width: 24%;
            }
            .weather_container .current-weather-table th, .weather_container .current-weather-table td {
                padding: 10px 5px;
                white-space: pre;
            }
            .weather_container .current-temp {
                font-size: 1.6rem;
            }
            .weather_container .current-icon {
                font-size: 1.8rem;
            }
            .weather_container .current-details {
                font-size: 0.8rem;
            }
            .weather_container .forecast-table {
                min-width: 500px;
            }
            .weather_container .forecast-table th, .weather_container .forecast-table td {
                padding: 10px 5px;
                font-size: 0.8rem;
                line-height: 1.3;
            }
            .weather_container .weather-icon {
                font-size: 1.4rem;
            }
            .weather_container .temps {
                font-size: 0.8rem;
            }
            .weather_container .rain {
                font-size: 0.7rem;
            }
        }