/* ====== GLOBAL ====== */

body {
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    margin: 0;
    padding: 0;
    color: #333;
}

h1, h2, h3 {
    margin: 0 0 15px 0;
    font-weight: 600;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ====== FORM CONTAINER ====== */

.form-container {
    max-width: 400px;
    margin: 60px auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 12px;
    margin-bottom: 5px;
    font-weight: bold;
}

input {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

button {
    margin-top: 20px;
    padding: 14px;
    background: #2ecc71;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    cursor: pointer;
}

button:hover {
    background: #27ae60;
}

/* ====== MESSAGES ====== */

.error {
    color: #e74c3c;
    text-align: center;
    margin-bottom: 10px;
}

.success {
    color: #2ecc71;
    text-align: center;
    margin-bottom: 10px;
}

.center {
    text-align: center;
}

/* ====== PAGE CONTAINER ====== */

.page-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
}

/* ====== BUTTONS ====== */

.btn {
    display: inline-block;
    background: #2ecc71;
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    margin: 10px 0;
}

.btn:hover {
    background: #27ae60;
}

.btn.fullwidth {
    width: 100%;
    text-align: center;
}

.small-btn {
    background: #3498db;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
}

.small-btn:hover {
    background: #2980b9;
}

/* ====== CHECKLIST ====== */

.checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.check-item {
    background: white;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.check-left {
    display: flex;
    flex-direction: column;
}

.check-title {
    font-size: 16px;
    font-weight: bold;
}

.status {
    font-size: 13px;
    margin-top: 4px;
}

.status.ok {
    color: #2ecc71;
}

.status.warn {
    color: #e67e22;
}

.status.gray {
    color: #777;
}

/* ====== NAVIGATION ====== */

.nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #eee;
    padding: 12px 0;
    text-align: center;
    border-top: 1px solid #ccc;
}

.nav a {
    margin: 0 20px;
    font-size: 16px;
    color: #333;
}

.nav a:hover {
    text-decoration: underline;
}
.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: #2ecc71;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    color: white;
    margin-bottom: 10px;
}
.icon-label {
    font-size: 15px;
    text-align: center;
    color: #333;
    margin-top: -5px;
}
.icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 20px 0;
}