

@import "/Static/CSS/Elements/FeaturedBoxes.css";
@import "/Static/CSS/Elements/Headers.css";
@import "/Static/CSS/Elements/InstallWizard.css";
@import "/Static/CSS/Elements/NavBar.css";


/* Base layout and typography */
body {
    margin: 0;
    line-height: 1.4;
    font-family: "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    background-color: RGBA(210, 214, 218, 1);
    color: RGBA(23, 38, 51, 1);
}




.text-bg-dark p a {
    color: RGBA(200, 207, 78, 1);
}


.img-fluid-cover {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-bg-dark {
    background-color: RGBA(32, 53, 71, 1) !important;
}

.dark-navy {
    background-color: RGBA(23, 38, 51, 1)
}



@media only screen and (min-width: 768px) {
    .bg-icon {
        background: url(/img/icons/icon-xl.svg) no-repeat center bottom;
        background-size: contain;
        min-height: 24rem;
    }
}

@media only screen and (min-width: 980px) {
    .bg-icon {
        background-size: auto;
    }
}

.max-w {
    max-width: 1200px;
    margin: 0 auto;
}







.highlighted-section {
    background: linear-gradient(135deg, #2d3748, #1a202c); /* Or use a solid like #343a40 */
    color: white;
}


img {
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.02);
}




















a {
    color: #007acc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header style */
header {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header h1 {
    font-size: 1.5rem;
    margin: 0;
}




/* Cards (common in dashboards) */
.card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

table th, table td {
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
}

table th {
    background-color: #ecf0f1;
    text-align: left;
}


















.install-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2em 1em;
}

.install-options {
    display: flex;
    justify-content: center;
    gap: 2em;
    flex-wrap: wrap;
}

.install-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    background-color: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 16px;
    text-decoration: none;
    color: #222;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease;
}

.install-button:hover {
    background-color: #eaeaea;
    border-color: #007bff;
    transform: scale(1.03);
}

.install-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1em;
}


