@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.actions {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center
}

body {
    overflow-x: hidden;
}

.highlight,
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: rgba(233, 118, 0, 0.80);
    font-weight: bold;
}

.nav-tabs .nav-link {
    color: #305F72;

}

#profile-img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: #305F72
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #22424e;
    color: rgba(233, 118, 0, 0.80);
}

.action-btn {
    height: 40px;
    width: 40px;
}

.no-margin {
    margin-bottom: 0 !important;
}

.cover {
    background: url(../../static/images/cover.jpg);
    background-size: cover;
    background-position: center;
    height: 200px;
    position: relative;
    width: 100%;
    z-index: -1;
}

.profile-card {
    /* transform: translate(0%, -50%); */
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-height: 300px;
    max-height: 80vh;
}

.analytics-card {
    /* transform: translate(0%, -50%); */
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-fields {
    border-radius: 5rem;
    border: 1px solid #305F72;
}

.form-fields:disabled {
    background-color: rgb(230, 230, 230);
}

.profile-initial {
    border-radius: 50%;
    margin: 10px;
    background-color: #305F72;
    width: 3rem;
    height: 3rem;
    justify-content: center;
    align-items: center;
    display: flex;
    color: white;
    font-weight: 700;
}

.question {
    border: 1px solid #305F72;
}

.chip {
    border-radius: 10rem;
}

/* Small Screens */
@media screen and (max-width: 600px) {
    .container-fluid {
        width: 100% !important;
    }

    .navbar-toggler-icon {
        background-image: url("../../static/images/menu-line.svg") !important;
    }

    .action-btn {
        height: 20px;
        width: 20px;
    }
}

