/* Fraybit Dark Mode Theme */
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #121212; /* Deep Black/Gray */
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    background: #1e1e1e; /* Lighter charcoal for the card */
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    width: 100%;
    max-width: 550px;
    border: 1px solid #333;
}

h1 {
    color: #00cec9; /* Glowing Teal */
    margin-top: 0;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

p {
    color: #b2bec3;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 20px;
}

/* Input Styles */
select, input[type="text"] {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 12px;
    border: 2px solid #3d3d3d;
    border-radius: 8px;
    outline: none;
    transition: all 0.2s ease;
}

select {
    flex: 1;
    cursor: pointer;
}

input[type="text"] {
    flex: 2;
}

select:focus, input[type="text"]:focus {
    border-color: #00cec9;
    box-shadow: 0 0 8px rgba(0, 206, 201, 0.3);
}

/* Buttons */
.button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

button {
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-submit {
    background-color: #00cec9;
    color: #121212;
}

.btn-submit:hover {
    background-color: #00b894;
    transform: translateY(-1px);
}

.btn-admin {
    background-color: transparent;
    color: #00cec9;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid #00cec9;
}

.btn-admin:hover {
    background-color: rgba(0, 206, 201, 0.1);
}

/* Admin Table Dark Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #252525;
}

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

th {
    background-color: #333;
    color: #00cec9;
}