﻿body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Roboto';
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.logo-image {
    height: 350px;
}

.search-container {
    text-align: center;
}

.input-container {
    display: flex;
    width: 400px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 5px 4px rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    overflow: hidden;
}

input[type="text"] {
    width: 70%;
    font-size: 20px;
    padding: 5px;
    border: none !important;
    outline: none;
}

button {
    font-size: 20px;
    padding: 10px 20px;
    background-color: #0e63ff;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    cursor: pointer;
}

#loadingSpinner {
    font-size: 18px;
    color: #555;
    margin-top: 10px;
}

p {
    font-size: 16px;
}

#loadingSpinner,
#dataPlanQuotaMessage,
#skuName,
#planStatus,
#totalDays,
#isDayPlan,
#totalTraffic,
#highFlowSize {
    font-size: 20px;
    margin-top: 10px;
}

#usageInfoList h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

#usageTable {
    font-size: 20px;
    width: 100%;
}

    #usageTable th,
    #usageTable td {
        padding: 5px;
    }

    .card-title,
    .card-text,
    #usageInfoList h3,
    #usageTable th,
    #usageTableBody td {
        font-family: 'Roboto';
    }

.strong-class {
    font-weight: bold;
    font-size: 20px;
    font-family: 'Roboto';
}

#searchValue {
    flex: 1;
    border: none;
    padding: 15px;
    font-size: 16px;
}

#searchButton {
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    #searchButton:hover {
        background-color: #4285f4;
    }

.material-icons {
    font-size: 24px;
}

#dataPlanQuotaMessage,
#skuName,
#planStatus,
#isDayPlan,
#totalDays,
#totalTraffic,
#highFlowSize {
    text-align: left;
    display: none;
}

.card {
    width: 90%;
    max-width: 450px;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-body {
    display: flex;
    flex-wrap: wrap;
}

.card-title {
    margin-block-start: 0em;
    margin-block-end: 0.5em;
}

.card-text {
    margin-block-start: 0em;
    margin-block-end: 0em;
}

.card-button {
    border: none;
    border-radius: 10px;
}

.row {
    width: 100%;
    display: flex;
    justify-content: space-between; /* Adjust alignment as needed */
}

.col {
    flex: 1;
    padding: 10px;
}

.col-2 {
    width: 25%;
    padding: 10px;
}

@media (max-width: 600px) {
    .logo-image {
        height: 200px;
    }

    .input-container {
        width: 350px;
    }

    input[type="text"] {
        font-size: 16px;
        padding: 10px;
    }

    button {
        font-size: 16px;
        padding: 8px 15px;
    }

    .strong-class,
    #skuName,
    #planStatus,
    #totalDays,
    #totalTraffic,
    #highFlowSize,
    #usageInfoList h3 {
        font-size: 18px;
    }

    #usageTable {
        font-size: 18px;
        width: 95% !important;
    }

    #loadingSpinner,
    #dataPlanQuotaMessage {
        font-size: 16px;
    }

    .card {
        width: 90%;
        max-width: 100%;
    }

    #usageInfoList,
    .infoContainer {
        width: 90% !important;
        margin-inline: auto !important;
    }
}