body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #00ff88;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #0d0d0d;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    width: 400px;
    max-width: 100%;
    text-align: center;
    overflow: hidden;
}

a {
    font-size: 1.1em;
    font-weight: bold;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.9);
}

.input-field {
    margin-bottom: 15px;
    text-align: left;
}

.input-field label {
    font-weight: bold;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00cc66;
    text-shadow: 0 0 6px rgba(0, 204, 102, 0.8);
}

.input-field .icon {
    font-size: 1.4em;
}

.input-field select,
.input-field input {
    width: 100%;
    padding: 12px;
    border: 2px solid #004d26;
    border-radius: 6px;
    background: #0f1f0f;
    color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
    font-size: 1.1em;
    transition: 0.3s ease-in-out;
    outline: none;
    box-sizing: border-box;
    text-align: center; 
}


.input-field select:hover,
.input-field input:hover {
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.7);
}

.input-field select:focus,
.input-field input:focus {
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 1);
}

button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #009966, #00cc66);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
    font-size: 1.2em;
}

button:hover {
    background: linear-gradient(90deg, #00cc66, #00ff88);
    box-shadow: 0 0 15px rgba(0, 255, 136, 1);
}

.success {
    color: #00ff88;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.8);
}

.error {
    color: #ff4d4d;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 77, 77, 0.8);
}
.warning-box {
            background-color: #fff8c4;
            border-left: 4px solid #f1c40f;
            padding: 1rem;
            margin-top: 1rem;
            border-radius: 8px;
            color: #333;
        }
        .hidden {
            display: none;
        }
.nalog-warning {
    background-color: #ffe6e6;
    border-left: 5px solid #ff0000;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-weight: bold;
    color: #b30000;
    text-align: left;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.modal-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    text-align: center;
}
.modal-message {
    margin-bottom: 15px;
    font-size: 16px;
}
#close-modal {
    padding: 8px 16px;
    border: none;
    background-color: #2196F3;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}