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

    body {
        background: #1c314d;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        padding: 20px;
    }

    .container {
        background: white;
        width: 380px;
        border-radius: 20px;
        padding: 25px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .search-box {
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
    }

    .search-box input {
        flex: 1;
        padding: 12px;
        border-radius: 12px;
        border: 1px solid #ccc;
        font-size: 16px;
    }

    .search-box button {
        background: #4a63ff;
        border: none;
        padding: 12px 20px;
        border-radius: 12px;
        color: white;
        cursor: pointer;
        font-size: 16px;
        transform: 0.3s;
    }

    .search-box button {
        background-color: #2f49f0;
    }

    .weather-icon img {
        width: 110px;
        margin: 20px 0;
    }

    .temp {
        font-size: 48px;
        font-weight: 600;
    }

    .city {
        font-size: 22px;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .details {
        display: flex;
        justify-content: center;
        margin-top: 25px;
    }

    .col {
        background: #f4f4ff;
        padding: 15px;
        border-radius: 15px;
        width: 48%;
    }

    .col img {
        width: 36px;
    }

    .humidity,
    .wind {
        font-size: 18px;
        font-weight: 600;
        margin-top: 5px;
    }