
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Inter:wght@400;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #0b0c10;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

header {
    background-color: #1f2833;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #45a29e;
    box-shadow: 0 0 10px #45a29e;
}


.lavoro {
  padding: 15px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}

.titolo-lavoro {
  display: block;
  font-size: 1.2em;
  margin-bottom: 8px;
}

.descrizione-lavoro {
  margin: 0 0 10px 0;
  font-style: italic;
  color: #333;
}

.tempi-sviluppo {
  margin: 10px 0;
}

.costo-guadagno {
  margin-bottom: 10px;
}


header h1 {
    font-family: 'Orbitron', sans-serif;
    margin: 0;
}

main.contenuto {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background-color: #1f2833;
    border-radius: 10px;
    box-shadow: 0 0 10px #45a29e33;
}
main.contenutologin {
    
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background-color: #1f2833;
    border-radius: 10px;
    box-shadow: 0 0 10px #45a29e33;
}

input, select, textarea {
    background-color: #0b0c10;
    border: 1px solid #45a29e;
    color: #66fcf1;
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 4px;
    transition: border 0.3s;
}

input:focus, textarea:focus, select:focus {
    border-color: #66fcf1;
    outline: none;
}

button, input[type="submit"] {
    background-color: #0b0c10;
    border: 2px solid #66fcf1;
    color: #66fcf1;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

button:hover, input[type="submit"]:hover {
    background-color: #66fcf1;
    color: #0b0c10;
    box-shadow: 0 0 10px #66fcf1;
    transform: scale(1.02);
}

a {
    color: #66fcf1;
}


.lavoro {
    background-color: #151a20;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0 0 5px #45a29e33;
}

.badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 0.9em;
    font-weight: bold;
    margin-left: 5px;
}

.badge.disponibile {
    background-color: #2ecc71;
    color: #0b0c10;
}

.badge.in_approvazione {
    background-color: #f39c12;
    color: #0b0c10;
}

.badge.in_corso {
    background-color: #3498db;
    color: #fff;
}

.badge.completato {
    background-color: #95a5a6;
    color: #0b0c10;
}


.rosso {
    color: #ff4c4c;
    font-weight: bold;
}
