@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bs-body-font-family: 'Inter', sans-serif;
    --bs-body-font-size: 16px;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #333;
    --bs-body-bg: #f5f5f5;
    --white: #ffffff;
    --border-radius: 8px;
    --shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    background: linear-gradient(45deg, #04333a7d, #04333a);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex-grow: 1;
}

.navigation {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    padding: 10px 5%;
    gap: 4%;
    border-top: 1px solid #eee;
    width: 100%;
    text-decoration: none;
}

.nav-item {
    text-decoration: none;
    color: #666;
    text-align: center;
}

.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.step {
    position: relative;
    z-index: 0;
    width: 40px;
    height: 40px;
    background-color: #b1b5b5;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
}

.step.active {
    background-color: #007bff;
}

.hidden {
    display: none;
}

.basic {
    color: black;
    font-size: 14px;
}

.card {
    margin-bottom: 40px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 20px;
}

.btn {
    cursor: pointer;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-success {
    background-color: #28a745;
    color: white;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.search-container {
    margin-bottom: 20px;
}

.search-bar-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#backButton {
    background: transparent;
    border: none;
    color: blue;
}

#search-bar,
#taskFilter,
.add-customer-button {
    width: 100%;
    height: 60px;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.add-customer-button {
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

.member-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #dbdbdb;
}

.double-line {
    border: none;
    border-top: 3px solid black;
    border-bottom: 3px solid black;
    margin: 20px 0;
    width: 100%;
}

@media (max-width: 480px) {
    .navigation {
        position: fixed;
        bottom: 0;
        left: 0;
        grid-template-columns: repeat(4, 1fr);
        padding: 10px 3%;
    }

    .container {
        padding: 20px 10px;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (min-width: 481px) and (max-width: 780px) {
    .navigation {
        grid-template-columns: repeat(4, 1fr);
        padding: 10px 5%;
    }

    .search-bar-container {
        flex-direction: row;
    }

    #search-bar,
    #taskFilter {
        flex-grow: 1;
    }

    .add-customer-button {
        width: auto;
    }
}

@media (min-width: 781px) {
    .container {
        padding: 40px;
    }

    .search-bar-container {
        flex-direction: row;
    }

    #search-bar,
    #taskFilter {
        flex-grow: 1;
    }

    .add-customer-button {
        width: auto;
    }

    .navigation {
        position: static;
        margin-top: 20px;
    }
}