<style>
    body {
        background-color: white;
        color: #333;
        font-family: Arial, sans-serif;
        text-align: center;
        margin-top: 100px;
    }

    input[type="text"] {
        padding: 10px;
        width: 300px;
        border: 2px solid #e91e63;
        border-radius: 8px;
    }

    button {
        padding: 10px 20px;
        background-color: #4caf50;
        color: white;
        border: none;
        border-radius: 8px;
        margin-left: 10px;
        cursor: pointer;
    }

    .result-box {
        margin: 40px auto;
        width: 80%;
        max-width: 600px;
        background: #fff;
        border: 2px solid #e91e63;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    }

    table {
        width: 100%;
        border-collapse: collapse;
    }

    td {
        text-align: left;
        padding: 8px 12px;
        border-bottom: 1px solid #f3f3f3;
        color: #e91e63;
        font-weight: 500;
    }

    td:first-child::before {
        content: '🔹 ';
    }
table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
    background-color: #ffeef5;
    border: 2px solid #e91e63;
    border-radius: 10px;
    overflow: hidden;
}

th {
    background-color: #e91e63;
    color: white;
    padding: 10px;
    text-align: left;
    font-size: 18px;
}

td {
    padding: 10px;
    border-bottom: 1px solid #f8bbd0;
    font-size: 16px;
}

tr:last-child td {
    border-bottom: none;
}
.result-box table {
    background-color: #fff0f5;
    border: 1px solid #e91e63;
    border-radius: 10px;
    overflow: hidden;
}

.result-box tr:hover {
    background-color: #ffe4ec;
    transition: background 0.2s;
}
.pagespeed-box {
    background-color: #fff;
    border: 2px dashed #e91e63;
    border-radius: 10px;
    padding: 10px;
    width: 200px;
    margin: 20px auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.pagespeed-box th {
    background-color: transparent;
    color: #e91e63;
    font-size: 18px;
}


    </style>

