.weather-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #ffffff;
    background-color: #0f1420;
}

.weather-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: #e83e8c;
}

.weather-table-container {
    overflow-x: auto;
}

.weather-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #1a202c;
    border-radius: 8px;
    overflow: hidden;
}

.weather-table th,
.weather-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #2d3748;
}

.weather-table th {
    background-color: #2c3e50;
    color: #ffffff;
    font-weight: bold;
}

.weather-table tr:nth-child(even) {
    background-color: #1e2533;
}

.weather-table tr:hover {
    background-color: #2c3e50;
}

.weather-table img {
    vertical-align: middle;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .weather-table {
        font-size: 14px;
    }
    
    .weather-table th,
    .weather-table td {
        padding: 8px;
    }
}

.weather-note {
    margin-top: 20px;
    padding: 10px;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    color: #721c24;
    text-align: center;
}

/* form */
.weather-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #ffffff;
    background-color: #0f1420;
}

.weather-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: #e83e8c;
}

.weather-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a202c;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.form-control {
    flex: 1;
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
    color: #ffffff;
    background-color: #2d3748;
    border: 1px solid #4a5568;
    border-radius: 5px;
    margin-right: 15px;
}

.form-control:last-of-type {
    margin-right: 15px;
}

.form-control:focus {
    outline: none;
    border-color: #e83e8c;
    box-shadow: 0 0 0 2px rgba(232, 62, 140, 0.2);
}

.btn-primary {
    height: 40px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    background-color: #e83e8c;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #d63384;
}

.weather-table-container {
    overflow-x: auto;
}

.weather-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.weather-table th,
.weather-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #2d3748;
}

.weather-table th {
    background-color: #2c3e50;
    color: #ffffff;
    font-weight: bold;
}

.weather-table tr:nth-child(even) {
    background-color: #1e2533;
}

.weather-table tr:hover {
    background-color: #2c3e50;
}

.weather-table img {
    vertical-align: middle;
    margin-right: 10px;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .weather-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-control,
    .btn-primary {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .btn-primary {
        margin-bottom: 0;
    }
    
    .weather-table {
        font-size: 14px;
    }
    
    .weather-table th,
    .weather-table td {
        padding: 8px;
    }
}

/* 달력 스타일 커스터마이징 */
.ui-datepicker {
    background-color: #1a202c;
    border: none;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ui-datepicker-header {
    background-color: #2d3748;
    border: none;
    border-radius: 5px 5px 0 0;
    color: #ffffff;
}

.ui-datepicker-calendar th {
    color: #e83e8c;
}

.ui-datepicker-calendar td a {
    color: #ffffff;
}

.ui-datepicker-calendar td a:hover {
    background-color: #e83e8c;
}

.ui-datepicker td a.ui-state-hover {
    background: none !important;
    border: none !important;
}

/* chart */
.weather-chart-container {
    background-color: #1a202c;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    height: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .weather-chart-container {
        height: 300px;
    }
}
