/* © WatchJunk */
/* coded by nya & suzunay */

body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            background-color: #f4f4f4;
            padding: 0;
        }

        .center-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 77px;
            margin-bottom: 77px;
        }

        .menu-container {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
            max-width: 320px;
            width: 100%;
        }

        .menu-logo {
            width: 120px;
            height: auto;
            margin-bottom: 20px;
        }

        .menu-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .menu-button {
            background: linear-gradient(135deg, #00a3ff 0%, #1f2937 100%);
            color: #fff;
            border: none;
            padding: 10px 20px;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            display: block;
            margin: 0 auto 15px;
            min-width: 120px;
            width: 100%;
            text-decoration: none;
            text-align: center;
            cursor: pointer;
        }

        .menu-button:hover {
            background: linear-gradient(135deg, #13866a 0%, #374151 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
        }

        .container {
            max-width: 1000px;
            margin: 30px auto;
            padding: 20px;
            background: #fff;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

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

        th,
        td {
            text-align: left;
            padding: 12px;
            color: black;
            border-bottom: 1px solid #ddd;
        }

        th {
            background-color: rgba(0, 163, 255, 0.12);
            color: #00a3ff;
        }

        tr:hover {
            background-color: #f1f1f1;
        }

        img.profile {
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }

        .back-button {
            background: linear-gradient(135deg, #00a3ff 0%, #1f2937 100%);
            color: #fff;
            border: none;
            padding: 10px 20px;
            font-size: 0.9rem;
            font-weight: 600;
            border-radius: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            display: inline-block;
            margin-bottom: 15px;
            text-decoration: none;
            cursor: pointer;
        }

        .back-button:hover {
            background: linear-gradient(135deg, #13866a 0%, #374151 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
        }
