/* status.css */

/* General Styles */
body {
    background-color: #121212;
    color: #FAFDF6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background: #4B0082;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header div {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style-type: none;
    display: flex;
}

nav ul li {
    font-weight: bold;
    margin-left: 20px;
}

nav ul li a {
    color: #FAFDF6;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FFBF00;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    color: #FFBF00;
    margin-bottom: 20px;
    text-align: center;
}

/* Status Page Styles */
.status {
    padding: 60px 0;
    background-color: #121212;
}

.status .status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.status-item {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.status-item:hover {
    background-color: #333333;
}

.status-item h3 {
    color: #FFA500;
}

.status-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
}

.status-up {
    background-color: #4CAF50; /* Green for operational */
}

.status-issue {
    background-color: #FFC107; /* Yellow for minor issues */
}

/* Uptime Bar */
.uptime-bar {
    background-color: #333;
    height: 8px;
    border-radius: 5px;
    margin-top: 10px;
    overflow: hidden;
}

.uptime-fill {
    background-color: #4CAF50; /* Green fill for uptime */
    height: 100%;
}

/* Notices Section */
.notices {
    background-color: #121212;
    padding: 60px 0;
}

.notices .notice-item {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.notice-item h3 {
    color: #FFBF00;
    margin-bottom: 10px;
}

.notice-item p {
    margin: 5px 0;
}

footer {
    background-color: #121212;
    text-align: center;
    padding: 20px 0;
}
