body {
    font-family: Verdana, Geneva, sans-serif;
    background: #667eea;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container {
    max-width: 420px;
    margin: 60px auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
}

h1 {
    color: #5f27cd;
    margin-bottom: 35px;
    font-weight: 700;
    font-size: 28px;
}

form label {
    display: block;
    text-align: left;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3436;
}

form input {
    width: 100%;
    padding: 14px;
    margin-bottom: 22px;
    border-radius: 8px;
    border: 2px solid #dfe6e9;
    box-sizing: border-box;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 15px;
}

form input:focus {
    outline: none;
    border-color: #6c5ce7;
}

form button {
    background: #f5576c;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    font-family: Verdana, Geneva, sans-serif;
}

form button:hover {
    background: #e04558;
}

a {
    display: inline-block;
    margin-top: 25px;
    color: #5f27cd;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
}

a:hover {
    background-color: #f0f0f0;
}

p {
    color: #2d3436;
    font-size: 16px;
    line-height: 1.8;
}

p strong {
    color: #5f27cd;
}

.result-header {
    margin-bottom: 30px;
}

.result-header h1 {
    font-size: 26px;
    color: #5f27cd;
}

.result-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.result-label {
    color: #636e72;
    font-size: 15px;
    font-weight: 500;
}

.result-value {
    color: #2d3436;
    font-size: 16px;
    font-weight: 600;
}

.result-divider {
    height: 2px;
    background: #dfe6e9;
    margin: 20px 0;
}

.result-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.result-label-main {
    color: #636e72;
    font-size: 14px;
    margin-bottom: 10px;
}

.result-value-main {
    color: #5f27cd;
    font-size: 32px;
    font-weight: 700;
}

.result-badge {
    text-align: center;
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
}

.result-badge.odlicno {
    background: #00b894;
    color: white;
}

.result-badge.dobro {
    background: #0984e3;
    color: white;
}

.result-badge.prosjecno {
    background: #fdcb6e;
    color: #2d3436;
}

.result-badge.lose {
    background: #d63031;
    color: white;
}

.back-button {
    display: inline-block;
    margin-top: 25px;
    color: white;
    background: #6c5ce7;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 25px;
}

.back-button:hover {
    background: #5f27cd;
}