/* Resetting default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-size: 16px;
}

/* Removed duplicate .toolbar, .logo, .nav-links styles */

/* Removed duplicate .sidebar styles */

.main-content {
    margin-left: 250px; /* Accounts for sidebar */
    padding: 80px 30px 30px 30px; /* Standardized padding for navbar */
    flex: 1;
}

.footer {
    background-color: #1f2937;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: auto;
    position: relative;
    z-index: 1000;
    font-size: 16px;
}

.hero {
    background: linear-gradient(135deg, #3b82f6, #1f2937);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

.release-notes {
    margin-top: 30px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 16px;
}

.release-notes h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1f2937;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 8px;
}

.release-notes h3 {
    font-size: 24px;
    margin-top: 20px;
    color: #374151;
}

.release-notes h4 {
    font-size: 20px;
    margin-top: 15px;
    color: #1f2937;
}

.release-notes p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.release-notes ul, .release-notes ol {
    margin-bottom: 15px;
    padding-left: 30px;
}

.release-notes ul li, .release-notes ol li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.release-notes code {
    font-family: 'Courier New', Courier, monospace;
    color: #d63384;
    font-size: 16px;
}

.release-notes pre {
    background-color: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto;
    font-size: 16px;
}

/* Removed duplicate .search-bar styles */

.suggestions {
    max-height: 100px;
    overflow-y: auto;
    position: absolute;
    width: calc(100% - 20px);
    z-index: 1000;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
    font-size: 16px;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}

/* Background Image Styling */
.bgimg {
    background-image: url('/frontend/styles/assets/images/ComingSoon.png');
    height: 90vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    color: white;
    font-family: "Courier New", Courier, monospace;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.topleft {
    position: absolute;
    top: 16px;
    left: 16px;
}

.bottomleft {
    position: absolute;
    bottom: 16px;
    left: 16px;
}

.middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

hr {
    margin: auto;
    width: 40%;
    border: 1px solid white;
}
