* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #061201;
    font-family: Arial, sans-serif;
}
.card {
    width: 380px;
    max-width: 100%;
    background-color: #efece2;
    border: 2px solid #1e2a38;
    box-shadow: 6px 6px 0 #101820;
}
h2 {
    margin: 0;
    padding: 13px 20px;
    background-color: #1e2a38;
    color: #efece2;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.search-row {
    display: flex;
    margin: 20px 20px 0;
    border: 1px solid #1e2a38;
}
input {
    width: 100%;
    padding: 11px;
    border: none;
    border-right: 1px solid #1e2a38;
    outline: none;
    background-color: #f4e3ab;
    color: #1e2a38;
    font-family: Arial, sans-serif;
    font-size: 13px;
}
input::placeholder {
    color: #8a8368;
}
input:focus {
    background-color: #efe2b8;
}
button {
    padding: 10px 17px;
    border: none;
    background-color: #1e2a38;
    color: #efece2;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}
button:hover {
    background-color: #ac3444;
}
.loc-btn {
    width: calc(100% - 40px);
    margin: 8px 20px 0;
    border: 1px solid #ac3444;
    background: transparent;
    color: #ac3444;
}
.loc-btn:hover {
    background-color: #1e2a38;
    color: #efece2;
    border-color: #1e2a38;
}
.result {
    margin: 20px 20px 0;
    padding-top: 15px;
    border-top: 1px dashed #c9c4b2;
}
.temp {
    font-size: 45px;
    font-weight: bold;
    color: #1e2a38;
    line-height: 1;
}
.result div {
    margin-top: 6px;
    color: #5c5747;
    font-size: 12px;
}
.place {
    margin-top: 10px;
    color: #ac3444;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.nearby {
    margin: 20px 20px 22px;
    padding-top: 14px;
    border-top: 1px dashed #c9c4b2;
}
.nearby-header,
.nearby-title {
    margin-bottom: 10px;
    color: #817d70;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.nearby-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 5px;
}
.nearby-list::-webkit-scrollbar {
    height: 4px;
}
.nearby-list::-webkit-scrollbar-thumb {
    background-color: #c9c4b2;
}
.city-chip {
    flex-shrink: 0;
    padding: 7px 11px;
    border: 1px solid #1e2a38;
    background: transparent;
    color: #1e2a38;
    font-family: Arial, sans-serif;
    font-size: 11px;
    cursor: pointer;
    white-space: nowrap;
}
.city-chip:hover {
    background-color: #1e2a38;
    color: #efece2;
}
@media (max-width: 450px) {
    body {
        padding: 15px;
    }
    h2 {
        font-size: 18px;
    }
    .temp {
        font-size: 40px;
    }
}


#location-notice {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    z-index: 99999 !important;
    background: linear-gradient(90deg, #fff3cd, #ffe69c);
    color: #664d03;
    border-bottom: 2px solid #ffca2c;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    font-family: system-ui, -apple-system, sans-serif;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
    body {

    padding-top: 60px;
}
