/* Downloads page specific styles */

body {
    /*width: 1300px;*/
}

.downloads-container {
    padding: 20px;
}


/* Header Section */
.downloads-header {
    background-color: white;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.downloads-header h1 {
    font-size: 2.5em;
    color: #003333;
    margin-bottom: 10px;
}

.downloads-header p {
    font-size: 1.2em;
    color: #333;
}

/* Product Sections */
.download-section {
    margin-top: 30px;
    margin-bottom: 20px;
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.download-section h2 {
    font-size: 2em;
    color: #003333;
    margin-bottom: 20px;
}

.download-table {
    width: 100%;
    border-collapse: collapse;
}

.download-table th,
.download-table td {
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.download-table th {
    background-color: #003333;
    color: white;
    font-weight: bold;
}

.os-icon {
    width: 20px;
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
}

.download-button {
    background-color: #66CC33;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    min-width: 120px;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}

.download-button:hover {
    background-color: #559922;
}

.microsoft-store {
    background-color: #0078d7;
    min-width: 120px;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}

.microsoft-store:hover {
    background-color: #0066b4;
}

.download-button.disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    min-width: 120px;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}