    body{
        font-family: Arial, sans-serif;
        background-color: #ffe6f0;
    }

    .container{
        width: 350px;
        margin: 80px auto;
        background-color: white;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    }

    h3{
        color: #d63384;
        margin-bottom: 20px;
    }
    label{
        color: #d63384;
        text-align: left;
    }

    input[type=text]{
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ff99c8;
        border-radius: 5px;
        box-sizing: border-box;
    }

    input[type=submit]{
        width: 100%;
        padding: 10px;
        background-color: #ff4da6;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
    }

    input[type=submit]:hover{
        background-color: #e60073;
    }

    .table-container{
        width: 700px;
        margin: 30px auto;
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
    }

    table{
        width: 100%;
        border-collapse: collapse;
        font-family: Arial, sans-serif;
    }

    table th{
    background-color: #ff4da6;
    color: white;
    padding: 12px;
    text-align: center;
}

table td{
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #ffd6e7;
    color: #444;
}

table tr:nth-child(even){
    background-color: #fff0f6;
}

table tr:hover{
    background-color: #ffe0ef;
    transition: 0.2s;
}
