﻿

body {
    background-color: var(--page-background-color);
    color: var(--text-color-primary);
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

/* Styling for the NavLink */
.nav-item {
    display: flex;
    flex-direction: column; /* Stack icon and text vertically */
    align-items: center;
    padding: 20px 0; /* Apply padding to the NavLink */
    cursor: pointer;
    color: #a6a6a6;
    transition: background-color 0.3s ease;
    text-decoration: none; /* Remove underline */
    width: 100%; /* Ensure NavLink takes up full width of li */
}

.navlink-content {
    display: flex;
    flex-direction: column; /* Stack icon and text vertically */
    align-items: center;
}

    /* Icon styling */
    .navlink-content i {
        font-size: 24px; /* Icon size */
    }

    /* Text styling */
    .navlink-content span {
        margin-top: 10px; /* Space between icon and label */
        font-size: 12px; /* Label size */
        text-align: center;
    }

/* Hover effect for the NavLink */
.nav-item:hover {
    background-color: #404040;
}

.sidebar .nav-item.active {
    background-color: #0D0D0D;
    border-left: 5px solid var(--nano-product-color);
    width: calc(100% - 5px);
}

.card {
    background-color: var(--content-background-color);
    box-shadow: 0 4px 8px 0 rgba(44, 62, 80, 0.18), 0 1.5px 3px 0 rgba(44, 62, 80, 0.10);
    border-radius: 4px;
    padding: 1.5rem;
    margin: 1rem;
}

.inline {
    display: flex;
    flex-direction: column;
}

.fullwidth {
    flex: 1;
}

.content-container {
    padding: 20px 20px;
    margin: 20px 0px;
}

.icon {
    width: 24px;
    height: 24px;
    color: var(--depths-1);
}

a {
    color: var(--link-color);
    text-decoration: none;
}

.collection-container-row > div:first-child {
    padding-top: 24px;
}

.collection-container-row > div:last-child {
    padding-bottom: 24px;
}

.collection-container-row > div {
    background-color: var(--list-item-background-color-primary);
}

.collection-container-row:nth-of-type(even) > div {
    background-color: var(--list-item-background-color-secondary);
}

.collection-container-header > div,
.collection-container-row > div {
    padding: 8px 16px;
    box-sizing: border-box;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.wizard-container {
    max-width: 600px;
    margin: auto;
}

.wizard-steps {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

    .step .circle {
        width: 2rem;
        height: 2rem;
        border: 2px solid #ccc;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
    }

    .step.completed .circle {
        border-color: #28a745;
        background: #28a745;
        color: white;
    }

    .step.active .circle {
        border-color: #007bff;
        background: #007bff;
        color: white;
    }

    .step .title {
        margin-top: 0.5rem;
        font-size: 0.8rem;
        text-align: center;
    }

.connector {
    flex: 1;
    height: 2px;
    background: #ccc;
    margin: 0 0.5rem;
}

    .connector.completed {
        background: #28a745;
    }

.wizard-content {
/*    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 4px;
    min-height: 200px;
    margin-bottom: 1rem;*/
}

.wizard-nav {
    display: flex;
    justify-content: space-between;
}

.properties-container {
    margin-bottom: 20px;
}

.property {
    display: flex;
    flex-direction: row;
}

.property__name {
    width: 200px;
}

@media (min-width: 768px) {

    .inline {
        flex-direction: row;
        flex-wrap: wrap;
    }

        .inline > div {
            flex: 1;
        }

    .text--right {
        text-align: right;
    }

    .text--center {
        text-align: center;
    }

    .collection-container-row > div:first-child,
    .collection-container-row > div:last-child,
    .collection-container-header > div,
    .collection-container-row > div {
        padding: 12px 16px;
    }
}
