body {
    font-family: monospace;
    background-color: #000;
    color: #0f0;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

.hidden {
    display: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.stat-card {
    background-color: #111;
    border: 1px solid #0f0;
    padding: 20px;
    text-align: center;
}

.actions {
    text-align: center;
    margin-bottom: 40px;
}

.cost-estimator, .job-history {
    background-color: #111;
    border: 1px solid #0f0;
    padding: 20px;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #0f0;
    padding: 10px;
    text-align: left;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #111;
    border: 1px solid #0f0;
    padding: 20px;
}
