/* Custom Styles */
.company-name {
    color: #0056b3;
}

/* Hero Section (from index.php) */
.hero-banner {
    background: url('../images/Home-Banner-01.webp') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 5rem 0;
    position: relative;
    min-height: 420px;
}
.hero-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}
.hero-banner .container {
    position: relative;
    z-index: 2;
}

/* Contact Message Container (from index.php script, for status messages) */
#statusMessage {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Buttons (used in index.php and contact.php) */
.btn-primary {
    background-color: #004d99;
    border-color: #004d99;
}

.btn-success {
    background-color: #1e7e34;
    border-color: #1e7e34;
}

/* Calculator specific styles (from calculator.html) */
.vending-section {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-top: 20px;
}

.section-title {
    color: #0056b3; /* Darker blue, similar to your company-name, better contrast on light gray */
    margin-bottom: 20px;
}

.pro-tip {
    background-color: #e9ecef;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    font-style: italic;
    color: #343a40; /* Very dark gray, almost black, for excellent readability */
}

.table th, .table td {
    text-align: center;
    vertical-align: middle;
}

.recommendation {
    font-weight: bold;
    color: #28a745;
}

/* Table column widths for calculator.html */
.table {
    table-layout: fixed;
    width: 100%;
}
.table th:nth-child(1), .table td:nth-child(1) {
    width: 20%;
}
.table th:nth-child(2), .table td:nth-child(2) {
    width: 15%;
}
.table th:nth-child(3), .table td:nth-child(3) {
    width: 20%;
}
.table th:nth-child(4), .table td:nth-child(4) {
    width: 20%;
}
.table th:nth-child(5), .table td:nth-child(5) {
    width: 25%;
}

