* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.ds-flex {
    display: flex;
}

.js-sp-bt {
    justify-content: space-between;
}

.ai-cr {
    align-items: center;
}

.pd-10 {
    padding: 10px;
}

.mt-10 {
    margin-top: 10px;
}

.br {
    border: 0.3px solid rgba(0, 0, 0, 0.6);
}

.br-6 {
    border-radius: 6px;
}

.fs-12 {
    font-size: 12px;
}

.bg-blue {
    background-color: #CADEFF;
}

.pd-lr-10 {
    padding: 0 10px;
}

.wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 3;
}

.menu-container {
    position: absolute;
    width: 100%;
    z-index: 3;
    top: 50px;
}

a {
    text-decoration: none;
    color: #000;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0 20px;
    background: white;
    border-radius: 8px;
}

.menu-list a {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

.menu-list a:last-child {
    border-bottom: none;
}

.menu-list a {
    text-decoration: none;
    color: #000;
}

.icon {
    margin-right: 10px;
}

.container {
    margin: 10px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.right {
    text-align: right;
}

.fs-14 {
    font-size: 14px;
}

.br-blue {
    border: 1px solid #87BEF4;
}

.hamb-icon {
    margin: 16px 0px;
    width: 30px;
    z-index: 99;
}

.warning {
    margin: 8px;
    display: flex;
    background-color: #FFE481;
    color: #000;
    align-items: center;
    border-radius: 5px;
    padding: 10px 12px;
}

.warning-logo img {
    margin-right: 16px;
    width: 14px;
}

.weather {
    background-color: #CADEFF;
    border-radius: 6px;
    margin: 8px;
}

.weather button {
    background-color: rgba(0, 0, 0, 0);
    border: none;
}

.location img {
    width: 25px;
}

.location a {
    font-size: 20px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.location {
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 10px;
}

.current-weather {
    display: flex;
    justify-content: space-between;
    /* padding: 8px; */
    align-items: center;
    position: relative;
}

.current-weather .weather-information {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}

.current-weather .weather-information img {
    width: 60px;
}

.current-weather .weather-information a {
    font-size: 40px;
    text-decoration: none;
    font-weight: bold;
    color: #000;
}

.current-weather .time {
    text-align: right;
    font-size: 14px;
    color: #3c3c3c;
}

.upcomming-weather {
    overflow-y: hidden;
    overflow-x: auto;
    display: flex;
    gap: 50px;
    padding: 10px 12px;
    text-align: center;
    font-weight: 500;
    font-size: 12px;
}

.upcomming-weather img {
    width: 50px;
}

.upcoming-title {
    margin: 10px 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.upcoming-title img {
    width: 15px;
}

.show {
    display: block;
}

.hide {
    display: none;
}

.info {
    position: absolute;
    left: 160px;
    background-color: #000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    width: 120px;
    display: none;
}

.info-upcoming {
    display: none;
    position: absolute;
    background-color: #000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    margin-left: 100px;
}

.tides-title {
    margin: 10px;
}

.chart {
    position: relative;
    overflow-x: scroll;
    overflow-y: hidden;
    margin: 0 10px;
    padding-top: 16px;
}

.myChart {
    color: #fff;
    padding: 6px;
}

.chart-wrapper {
    background-color: #e1e1e1;
    border-radius: 8px;
    width: 750px;
}

.chart-wrapper p {
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 12px;
}

#map {
    height: 50vh;
}

.frame-map {
    width: 100%;
    height: 350px;
    border: 0;
}

.information {
    margin-top: 20px;
}

.information-title {
    /* font-size: 1.8em; */
    font-weight: bold;
    /* margin-bottom: 4px; */
}

.information-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr; /* Default: mobile */
  }

.content-card {
    transition: transform 0.3s ease;
    padding-bottom: 10px;
    border-bottom: 0.3px solid rgba(0, 0, 0, 0.6);
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    /* border-radius: 2px; */
    margin-bottom: 12px;
}

.content-card h3 {
    /* font-size: 1.2em; */
    margin-bottom: 8px;
    color: #333;
}

.content-card p {
    font-size: 0.95em;
    color: #666;
}

.information-btn {
    text-align: center;
    margin: 20px 0;
}

.information-btn a {
    padding: 10px 20px;
    background-color: #0077cc;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.information-btn a:hover {
    background-color: #005fa3;
}

footer {
    background-color: #212121;
    color: #fff;
    padding: 10px;
    text-align: center;
    position: relative;
    bottom: 0;
    margin-top: 20px;
}

@media only screen and (min-width: 468px) {
    .information-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Desktop */
    }
}

@media only screen and (min-width: 768px) {

    .information-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Desktop */
    }
    .container {
        margin: 10px 30px;
    }

    .warning img {
        width: 10px;
    }

    .weather {
        padding: 10px 20px;
    }

    .location-img {
        width: 10px;
    }

    .next img {
        width: 50;
    }

    .current-weather {
        display: flex;
        justify-content: space-between;
        gap: 40px;
    }

    .current-weather p {
        font-size: 14px;
    }

    .upcomming-weather {
        display: flex;
        gap: 50px;
    }

    .right {
        text-align: right;
    }

    .current-weather .weather-information img {
        width: 100px;
    }

    .current-weather .weather-information a {
        font-size: 80px;
    }

    .upcomming-weather p {
        font-size: 14px;
        padding: 5px 0;
    }

    .upcomming-weather img {
        width: 100px;
    }

    .chart-wrapper {
        width: 100%;
    }

    #map {
        height: 60vh;
    }

    .information {
        display: flex;
        align-items: center;
    }

    .information .content {
        margin: 0 20px;
        border: none;
    }

    .information-title {
        text-align: center;
    }

    .menu-container {
        width: 100%;
        position: absolute;
        right: 30px;
        max-width: 328px;
        top: 50px;
    }

    .menu-list {
        margin: 10px 0;
    }

    .hamb-white img {
        margin: -10px 0;
    }

    .info {
        position: absolute;
        left: 220px;
    }
}