/* General Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff; /* Dark theme for Google Tensor */
    color: #e0e0e0;
    padding-top: 130px; /* Ensures content is not hidden behind the fixed header */
    text-align: center;
}

header {
    background-color: #4285F4;
    color: white;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Navigation Bar */
nav {
    background-color: #333;
    padding: 10px 0;
    position: fixed;
    top: 100px; /* Avoid overlap with header */
    width: 100%;
    z-index: 1000;
    text-align: center;
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.5);

}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 15px;
    transition: background 0.3s;
}

nav ul li a:hover {
    background-color: #ff5722;
    border-radius: 5px;
}


.company-section{
    padding-top: 20px;
}

/* Main Content Box */
.container {
    width: 80%;
    max-width: 1000px;
    margin: 50px auto 50px auto;
    background: #0f54df;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.5); /* Google Blue Shadow Effect */
    border-radius: 15px;
}

/* Benchmark Table */
.benchmark-section table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #1e1e1e;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.benchmark-section th, 
.benchmark-section td {
    border: 1px solid #4285F4;
    padding: 10px;
    text-align: left;
}

.benchmark-section th {
    background: #4285F4;
    color: white;
}

.benchmark-section tr:nth-child(even) {
    background: #121212;
}

/* Cards */
.processors-section .card {
    background: #202124;
    padding: 15px;
    margin: 10px 0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(66, 133, 244, 0.5);
    border-left: 5px solid #4285F4;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background-color: #4285F4;
    color: white;
    margin-top: 30px;
    font-size: 14px;
    font-weight: bold;
    border-top: 3px solid #1A73E8;
}
