* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #cfd8ff 0%, #764ba2 100%);
    min-height: 100vh;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.navbar {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 7px #111111;
}

.navbar-user {
    color: white;
    font-size: 16px;
    text-shadow: 1px 1px 5px #111111;
}

.navbar-user .admin-badge {
    background: #f6ad55;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    margin-left: 10px;
}

.content-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

h2 {
    text-align: center;
    color: white;
    margin-bottom: 30px;
    text-shadow: 2px 2px 7px #111111;
}

h3 {
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 7px #111111;
}

input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #ddd;
    border-radius: 20px;
    box-sizing: border-box;
    font-size: 14px;
    background-color: #ffffff52;
}

div#myass {
    width: 75%;
    margin: auto;
}

div#two {
    display: grid;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

p {
    color: white;
    text-shadow: 2px 2px 7px #111111;
}

img#emoji {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

h3#dort {
    margin: auto;
}

input:focus {
    outline: none;
    border-color: #667eea;
}

button {
    padding: 12px 24px;
    margin: 10px 5px;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: #667eea;
    width: 100%;
}

.btn-primary:hover {
    background: #5568d3;
}

.btn-success {
    background: #48bb78;
}

.btn-success:hover {
    background: #38a169;
}

.btn-danger {
    background: #e53e3e;
}

.btn-danger:hover {
    background: #c53030;
}

.btn-warning {
    background: #f6ad55;
}

.btn-warning:hover {
    background: #ed8936;
}

.btn-info {
    background: #4299e1;
}

.btn-info:hover {
    background: #3182ce;
}

.button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.message {
    padding: 10px;
    margin: 10px 0;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.error {
    background: #fed7d7;
    color: #c53030;
    display: block;
}

.success {
    background: #c6f6d5;
    color: #2f855a;
    display: block;
}

.user-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.user-table th,
.user-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.user-table th {
    background: rgba(0, 0, 0, 0.2);
    font-weight: bold;
}

.user-table tr:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.3);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 7px #111111;
}

.stat-label {
    color: white;
    margin-top: 10px;
    text-shadow: 1px 1px 5px #111111;
}