/* Dashboard CSS  */

.dashboard-content .first-content h1 {
    margin-bottom: 45px;
}

.dashboard-content .first-content p {
    margin-bottom: 45px;
    word-break: break-all;
}

.second-content h2 {
    margin-bottom: 30px;
}

.activities-text {
    word-break: break-all;
    margin-bottom: 0px;
}

.activities-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    padding-top: 20px;
    border-bottom: 1px solid #E4E4E4;
}

.additional-text b {
    margin: 0px 5px 0px 10px;
}

.activities-img {
    margin-top: 15px;
}

.activities-img img {
    width: 55px;
    height: 55px;
    margin-left: 5px;
}


/* Right Sidebar Css */

.side-title {
    font-family: var(--roboto-font);
    font-weight: var(--font-weight-600);
    font-size: var(--font-size-12);
    line-height: 15px;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    margin-top: 40px;
}

.side-text {
    font-family: var(--roboto-font);
    font-weight: var(--font-weight-400);
    font-size: var(--font-size-14);
    line-height: 10px;
    color: var(--dark-gray);
}

.add-photo-section {
    border: dashed 1px #978F6B;
    height: 352px;
    max-height: 352px;
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    background: #FCFBF6;
    cursor: pointer;
}

.tutorial-section {
    padding: 41px;
    margin-top: 8px;
    margin-bottom: 10px;
    border: 1px solid #E4E4E4;
    color: #686565;
}

.tutorial-section img {
    width: 24px;
    height: 18px;
    margin-right: 10px;
}

.favorites-photo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

/* favorites Photos Page Grid */
.favorites-photo-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(200px, 1fr));
    gap: 7px;
    margin-top: 20px;
}

.favorites-item {
    position: relative;
    width: 100%;
    height: 200px !important;
}

.fav-check {
    margin-right: 8px;
    margin-top: 8px;
}


/* Responsive Screen */

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    .dashboard-content .first-content h1 {
        font-size: 32px !important;
    }

    .favorites-photo h3 {
        font-size: 32px !important;
    }

    .questions-text {
        font-size: 11px !important;
        letter-spacing: 0px !important;
    }

    .navbar {
        padding: 0px !important;
        line-height: 26px;
    }

    .navbar .dropdown .btn-link {
        padding: 0px !important;
        line-height: 26px;
    }
    
}

/* Small Devices (phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}