/*body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
	
}

.calculator {
    background-color: #fff;
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;}
	*/

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    background-image: url('ozadje.jpg'); /* Add your image file path here */
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100vh; /* Make sure the body covers the entire viewport height */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

.calculator {
    background-color: rgba(255, 255, 255, 0.8); /* Adding some opacity for better readability */
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


h1 {
    text-align: center;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="number"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
	margin-top: 20px;
}

button:hover {
    background-color: #0056b3;
}

/* Add styles for red and green text */
.red {
    color: red;
	font-size: 30px;
	font-weight: bold;
}

.green {
    color: green;
	font-size: 30px;
	font-weight: bold;
}

.znesek
{
	font-weight: bold;
	margin-top: 20px;
	font-size: 30px;
}

.gumbNazaj
{
	background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
	text-decoration:none;
	margin-top: 20px;
}

.naslov
{
	font-weight: bold;
	margin-top: 20px;
	margin-bottom: 50px;
	font-size: 30px;
}