body {
 font-family: Arial, sans-serif;
 background: #f4f4f4;
 margin: 10px;
 padding: 0;
 font-size: 20px;

 touch-action: pan-x pan-y;

}

        .login-container {
            max-width: 380px;
            margin: 50px auto;
            background: #fff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        h2 {
            text-align: left;
            margin-bottom: 25px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
        }

        input {
            width: 100%;
            padding: 12px;
            margin-bottom: 18px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 16px;
        }

        button {
            width: 100%;
            padding: 14px;
            background: #007bff;
            color: #fff;
            font-size: 16px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
        }

        button:hover {
            background: #0056c7;
        }

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

.simple-table th,
.simple-table td {
    border: 1px solid #ccc;
    padding: 6px 10px;
    text-align: left;
}

.simple-table th {
    background-color: #f5f5f5;
}

.card {
    display: inline-block;
    margin: 10px;
}

.circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #eeeeee;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: #000;
}

.circle .label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.circle .value {
    font-size: 32px;
    font-weight: bold;
}