/* General page styling */
body {
    font-family: 'Poppins', sans-serif;
    background: #f9f9f9;
    margin: 0;
    padding: 0;
}

/* Centered login form */
.login {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 320px;
    margin: auto;
    margin-top: 60px;
}

.login h1 {
    text-align: center;
    color: #660000;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    color: #555;
}

input[type="text"],
input[type="password"] {
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
    outline: none;
}

input[type="submit"] {
    background-color: #660000;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: background 0.3s;
}

input[type="submit"]:hover {
    background-color: #990000;
}

/* Navigation bar after login */
.navtop {
    background-color: #660000;
    height: 60px;
    width: 100%;
    border: 0;
}

.navtop div {
    display: flex;
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.navtop h1 {
    font-size: 1.2em;
    margin: 0;
    padding: 0;
}

.navtop a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.navtop a:hover {
    text-decoration: underline;
}

/* Page content after login */
.content {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.content h2 {
    margin-top: 0;
    color: #660000;
    font-size: 1em;
    margin-bottom: 20px;
}

/* Download list */
.content ul {
    list-style: none;
    padding-left: 0;
}

.content li {
    margin-bottom: 12px;
}

.content li a {
    color: #660000;
    text-decoration: none;
    font-weight: 600;
}

.content li a:hover {
    text-decoration: underline;
}

/* Nested sub-items */
.content li ul {
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
}

footer {
    margin-top: 40px;
    text-align: center;
    font-size: 0.9em;
    color: #666;
}



.card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px 25px;
    margin-bottom: 30px;
}
/*   landing page after login */
/* Font and global styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

/* Header styling */
header {
    background-color: #660000;
    color: #ffffff;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

header a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
}

header a:hover {
    text-decoration: underline;
}

/* Main content */
main {
    padding: 30px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

/* Card styling */
.card {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.card h2 {
    margin-top: 0;
    color: #660000;
    font-size: 1.5em;
}

/* Version section inside card */
.version {
    margin: 15px 0;
}

.version a.download-link {
    display: inline-block;
    background-color: #660000;
    color: #ffffff !important;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.version a.download-link:hover {
    background-color: #990000;
    transform: scale(1.03);
}

.details {
    margin-top: 8px;
    font-size: 0.95em;
    color: #555;
    padding-left: 10px;
}

/* Toggleable feature list */
.details ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
    color: #444;
    font-size: 0.95em;
}

.details a {
    font-size: 0.9em;
    color: #0066cc;
    margin-left: 10px;
    cursor: pointer;
    text-decoration: none;
}

.details a:hover {
    text-decoration: underline;
}

/* Notification box at bottom */
.note {
    background-color: #fff4e6;
    border: 1px solid #ffa726;
    color: #e65100;
    padding: 15px;
    margin-top: 40px;
    text-align: center;
    font-size: 1em;
    font-weight: 600;
    border-radius: 8px;
}

/* Footer */
footer {
    background-color: #ffe6e6;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9em;
    margin-top: 40px;
    color: #333;
}

