* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            transition: all 0.3s ease;
        }
 
        html {
            background: #ADD8E6;
            min-height: 100vh;
            padding: 40px 20px;
        }
 
        body {
            font-family: 'Segoe UI', sans-serif;
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 30px;
        }
 
        h1 {
            color: #ADD8E6;
            margin-bottom: 30px;
            text-align: center;
            font-size: 2.5em;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }
 
        table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin: 20px 0;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
 
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
 
        th {
            background: #fe7c03;
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 0.5px;
        }
 
        tr:last-child td {
            border-bottom: none;
        }
 
        .delete-link {
            display: inline-block;
            text-decoration: none;
            color: #ff4444;
            font-size: 1.2em;
            padding: 5px 10px;
            border-radius: 5px;
            transition: all 0.2s ease;
        }
 
        .delete-link:hover {
            background-color: #ffebeb;
            transform: scale(1.1);
        }
 
        .back-button {
            display: inline-block;
            background: #ADD8E6;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 8px;
            margin-top: 20px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(254, 124, 3, 0.3);
        }
 
        .back-button:hover {
            background:#ADD8E6;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(254, 124, 3, 0.4);
        }