/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: #f4f6f9;
    color: #333;
    padding: 40px;
}

/* Page Container */
.container {
    max-width: 500px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Headings */
h2, h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #222;
}

/* Form Labels */
label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

/* Inputs */
input[type="text"],
input[type="password"],
input[type="number"],
input[type="radio"],
button,
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
}

/* Radio buttons */
input[type="radio"] {
    width: auto;
    margin-right: 8px;
}

/* Buttons */
button {
    background: #0078ff;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-weight: bold;
}

button:hover {
    background: #005fcc;
}

/* Danger Button */
.btn-danger {
    background: #e63946;
}

.btn-danger:hover {
    background: #c71c2b;
}

/* Links */
a {
    color: #0078ff;
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Admin Section */
.admin-box {
    background: #fff;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.admin-box h3 {
    margin-bottom: 15px;
}

.admin-box a {
    display: block;
    margin-bottom: 10px;
}

/* Confirmation Page */
.confirm-box p {
    font-size: 17px;
    margin-bottom: 12px;
}