@import url('https://fonts.googleapis.com/css2?family=Anton+SC&family=Edu+AU+VIC+WA+NT+Dots:wght@400..700&family=Edu+AU+VIC+WA+NT+Guides:wght@400..700&family=Oswald:wght@200..700&display=swap');
body {
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background: #0e0202;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 2px solid yellow;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    color: #00FF7F;
    font-weight: bold;
    font-size: 2.5em;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 255, 127, 0.7);
    font-family: Anton SC;
}

.invoice-form {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    background-color: #2b2b2b;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

h2 {
    color: #ffea00;
    font-weight: bold;
    font-size: 1.8em;
    text-shadow: 0 0 5px rgba(255, 243, 15, 0.7);
    font-family: Anton SC;
    display: flex;
    justify-content: center
    ;
    align-content: center;
}

input[type="text"], input[type="number"], textarea, select {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #444;
    border-radius: 6px;
    font-size: 1em;
    font-weight: normal;
    background-color: #1e1e1e;
    color: #fff;
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

button {
    padding: 10px 15px;
    background: #FF4500;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
    transition: background 0.3s, box-shadow 0.3s;
}

button:hover {
    background: #FF6347;
    box-shadow: 0 0 15px rgba(255, 99, 71, 0.8);
}

#itemList {
    margin-top: 20px;
}

.invoice {
    border: 1px solid #444;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    background-color: #fcfff9d1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
   font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

.item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: #00FF7F;
}

.total {
    font-weight: bold;
    margin-top: 10px;
    font-size: 1.2em;
    color: #4f8e0c;
}

.pdf-button, .export-button {
    background-color: #28a745;
    transition: background 0.3s, box-shadow 0.3s;
}

.pdf-button:hover, .export-button:hover {
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.8);
}

.item-input {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.item-input input, .item-input select {
    margin-right: 5px;
}

.dropdown {
    margin-right: 5px;
    width: calc(100% - 20px);
}

.profile {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
}

.profile img {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

.profile span {
    color: #ffd700;
    font-weight: bold;
}
