﻿body {
    font-family: Segoe UI, Arial, sans-serif;
    background: #f2f2f2;
    margin: 0;
    padding: 0;
}

.header {
    background: #003366;
    color: white;
    padding: 20px;
    text-align: center;
}

.content {
    background: white;
    width: 80%;
    margin: 30px auto;
    padding: 25px;

    /* Compatibilità Visual Studio 2008 */
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    

    -moz-box-shadow: 0 0 10px #aaa;
    -webkit-box-shadow: 0 0 10px #aaa;
    
}

.footer {
    text-align: center;
    padding: 10px;
    color: #666;
    font-size: 12px;
}

input[type=text], input[type=password], select {
    width: 250px;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ccc;

    /* Compatibilità */
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    
}

button, input[type=submit], .aspNetButton {
    background: #0066cc;
    color: white;
    padding: 10px 18px;
    border: none;

    /* Compatibilità */
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
   

    cursor: pointer;
}

button:hover, input[type=submit]:hover {
    background: #004c99;
}

h2 {
    color: #003366;
}

.grid {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial;
    font-size: 14px;
}

.grid td, .grid th {
    border: 1px solid #ccc;
    padding: 6px;
}

.header-row {
    background-color: #0078D7;
    color: white;
    font-weight: bold;
}

.alt-row {
    background-color: #f2f2f2;
}

.footer-row {
    background-color: #e0e0e0;
    font-weight: bold;
}

/* Colonne numeriche */
.col-importo{
    text-align: right;
    font-weight: 600;
    }

.col-litri{
    text-align: right;
    font-weight: 600;
    }

.datebox {
    background-color: white;
    color: black;
    border: 1px solid #ccc;
    padding: 4px;
}

