body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

.container:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

nav {
    background-color: #F4BC1C;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 12px 25px;
    margin: 0 15px;
    display: inline-block;
    font-size: 18px;
    border-radius: 5px;
    transition: background 1s ease, box-shadow 1s ease, transform 1s ease;
}

nav a:hover {
    background: linear-gradient(45deg, #F4BC1C, #E0A800);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
	text-decoration: none;
}

nav .balans {
    float: right;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

button {
    background-color: #F4BC1C;
    color: white;
    border: none;
    cursor: pointer;
    padding: 14px 24px;
    text-align: center;
    border-radius: 8px;
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

button:hover {
    background-color: #CC9D18;
    transform: translateY(-2px);
}

form {
    margin-top: 30px;
}

input, select, button {
    padding: 12px;
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    transition: border-color 0.3s;
}

input[type="number"], input[type="text"], input[type="password"], input[type="username"], select {
    width: 100%;
}

input:focus, select:focus {
    border-color: #F4BC1C;
    outline: none;
}

h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.success, .error {
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
}

.success {
    background-color: #d4edda;
    color: #155724;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.success-message, .error-message {
    background-color: #e9ecef;
    padding: 15px;
    border-radius: 8px;
    margin-top: 25px;
    text-align: center;
    font-size: 16px;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
}

@media (max-width: 768px) {
    nav {
        text-align: left;
    }

    nav a {
        display: block;
        margin-bottom: 12px;
        font-size: 16px;
    }

    nav .balans {
        margin-top: 10px;
    }

    form {
        width: 100%;
    }

    button {
        width: auto;
    }

    input, select, button {
        width: 100%;
    }
}