/* General Page Styling */
body {
    margin: 0;
    padding: 20px;
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #1a3d6d;
}

/* Widget Container */
.widget-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
}

/* Headers */
h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 5px;
}

.station {
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
    color: #555;
}

/* Marine Conditions Row */
.conditions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Date Labels Above Chart */
.date-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
    color: #1a3d6d;
}

.date-box {
    font-weight: bold;
}

.chart-wrapper {
    width: 100%;
    height: 250px; /* You can change to 250 or 350 */
    position: relative;
}

/* Tide Table */
.tide-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.tide-table th, .tide-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

.tide-table th {
    background: #f0f4fa;
    font-weight: bold;
}
