/* Basic navigation bar styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

.navbar-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1200px;
    height: 60px;
    padding: 0 20px;    
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    padding: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    height: 100%;
}

.nav-item {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 15px;
}

.nav-item a { 
    text-decoration: none;
    color: #ffffff;
    padding: 5px 2px;
    font-size: large;
    font-weight: 800;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.nav-item a:hover {
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
}

.nav-item a.active {
    color: white;
    border-bottom: 2px solid #ffffff;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Download page styling */
.download-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.download-header {
    text-align: center;
    margin-bottom: 40px;
}

.download-header h1 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 15px;
}

.download-header p {
    font-size: 1.2em;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.platform-section {
    margin: 40px 0;
}

.platform-section h2 {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
}

.downloads-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.download-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    width: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #498aeb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-icon img {
    width: 40px;
    height: 40px;
    display: block;
}        

.download-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.download-card ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin: 20px 0;
}

.download-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.download-card ul li:last-child {
    border-bottom: none;
}

.download-button {
    display: inline-block;
    background-color: #0055D2;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s;
}

.download-button:hover {
    background-color: #0055D2;
}

.installation-section {
    background: #f0f8ff;
    border-radius: 10px;
    padding: 30px;
    margin: 50px 0;
}

.installation-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.installation-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    margin-bottom: 30px;
}

.step-number {
    background: #0055D2;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content h3 {
    margin-top: 0;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.docker-code {
    background: #333;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    font-family: monospace;
    overflow-x: auto;
    margin: 15px 0;
}

footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: white;
    margin-top: 50px;
}