@import url(https://fonts.bunny.net/css?family=ubuntu:300,400,600,700);
@import url(https://fonts.bunny.net/css?family=ubuntu-mono:400);
/* Global CSS - Page Specific Items Defined in Segments Below - Never add scripts!*/
body {
    background-color: #29292B; /* Windows 10 Dark Mode Task Bar */
    font-family: 'Ubuntu', 'Ubuntu-mono', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container {
    width: 70%;  /* Allows flexibility */
    max-width: 1200px;  /* Expands on larger screens */
    min-width: 320px;  /* Prevents it from getting too small */
    margin: 20px auto;  /* Center the container */
    padding: 30px;  /* More padding for larger screens */
    background-color: #FAF0E6;
    border: 3px solid #556B2F;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease-in-out;  /* Smooth resizing */
}
.logo img {
    width: 200px;
    height: 90px;
    margin-bottom: 20px;
}
h2 {
    color: #284389;
    font-size: 20px;
    font-weight: 700;
}
.submit-btn {
    background-color: #284389;
    color: #fff;
    font-size: 16px;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    width: 100%;
    display: inline-block;
    font-weight: 300;
    line-height: normal;
}
.submit-btn:hover {
    background-color: #A8C0E2;
}
.footer-text {
    font-size: 12px;
    color: #b7b7b7;
    margin-top: 20px;
}
/* Index/Home Page Specific */
label {
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-top: 10px;
    text-align: left;
    color: #000000;
}
input, select, textarea {
    width: 100%;
    padding: 4px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}
textarea {
    height: 100px;
    resize: both;
}
.alert { /* Only seen on new ticket submission */
    background-color: green;
    color: #fff;
    font-size: 16px;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    width: 48%;
}
/* Dashboard Specific Items */
a { /* TKT-Number - Subject - Status */
    text-decoration: none;
    color: #284389;
    font-size: 16px;
    font-weight: 400;
}
a:hover {
    color: #1f356b;
}
.ticket-list {
    list-style-type: none;
    padding: 0;
    text-align: left;
}
.ticket-list li {
    background: #f8f8f8;
    padding: 10px;
    border-radius: 5px;
    margin: 5px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Ticket Commander */
.ticket-details {
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin-top: 15px;
}
.ticket-details strong {
    color: #000;
}
.status-btn { /* In-Progress Button */
    background-color: #08872B; /* GitHub Green 4 */
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    width: 48%;
}
.status-btn:hover {
    background-color: #5FED83; /* GitHub Green 3 */
}
.addNote-btn {
    background-color: #284389;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    width: 48%;
}
.addNote-btn:hover {
    background-color: #A8C0E2;
}
.close-tkt-btn {
    background-color: red;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
    width: 48%;
}
.close-tkt-btn:hover {
background-color: #ff8080;
}
/* Reporting */
/* Reporting – KPI Cards */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.kpi-card {
    background-color: #f8f8f8;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.kpi-card h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.kpi-card .kpi-value {
    font-size: 28px;
    font-weight: 700;
    color: #284389;
    margin-top: 5px;
}
