/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background-color: #f4f5f7;
    background-image: url('https://barracudamsp.wingmanmspmarketing.com/wp-content/uploads/2024/08/Cyber-Warrior-facing-left.webp');
    background-position: bottom right; 
    background-repeat: no-repeat; 
    background-size: 15%;      
    background-attachment: fixed;       
}

/* Header Styling */
header {
    background-color: #263146;
    padding: 15px 0;
    color: #ffffff;
    width: 100%;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.header-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.logo img {
    height: 50px;
    width: 100%;
}

/* Navigation Menu */
header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

/* Title Styling (Centered) */
.header-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5em;
    color: #ffffff;
    text-align: center;
}

/* Navigation Styling */
.nav-links ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1em;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-links ul li a:hover {
    background-color: #003f6d;
}

header nav ul li a:hover {
    background-color: #0088CE; /* Darker shade for hover effect */
}

/* Leaderboard Container */
.leaderboard-container {
    width: 85%;
    text-align: center;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    height: auto;
}

/* Title Styling */
.leaderboard-container h1 {
    font-size: 2em;
    color: #005a9e; /* Matching Barracuda MSP Blue */
    margin-bottom: 20px;
}

/* Table Styling */
table {
    border-collapse: collapse;
    background-color: #ffffff !important;
    table-layout: fixed;
    width: 95%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 20px auto;
    font-size: 0.8em;
}

th,
td {
    border: 1px;
    padding: 8px;
    text-align: center;
}
th {
    top: 0;
    background-color: #263146;
    color: #fff;
    font-weight: bold;
    font-size: 1.5em;
}

td {
    border-bottom: 1px solid #ccc;
}

/* No Results Message Styling */
.no-results-message {
    color: #666;
    font-size: 1.2em;
    margin-top: 20px;
    text-align: center;
}

/* Link Styling */
a {
    color: #005a9e;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px;
    width: 100%;
    text-align: left;
   /* box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); */
    font-size: 14px;
}
