
/* This styles the scrollbar track */
::-webkit-scrollbar-track {
    background: var(--gray); /* Track background color */
    border-radius: 10px; /* Optional: for rounded corners */
}

/* This styles the scrollbar thumb (the part you drag) */
::-webkit-scrollbar-thumb {
    background: var(--action); /* Thumb color */
    border-radius: 10px; /* Optional: for rounded corners */
}

/* This styles the scrollbar thumb when it's being hovered over */
::-webkit-scrollbar-thumb:hover {
    background: var(--action);
    cursor: pointer; /* Color of the thumb on hover */
}

/* This styles the scrollbar itself (including the track and thumb) */
::-webkit-scrollbar {
    width: 10px; /* Width of the vertical scrollbar */
    height: 10px; /* Height of the horizontal scrollbar */
}







.phase_card{
    display: flex;
    flex-direction: column;
    border-radius: .25rem;
    padding: .5rem;
    margin-bottom: .25rem;
    gap: .5rem;
    width: calc(100% - 1.5rem);
}




.task_layout{
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.task_id{
    position: absolute;
    top: 1rem;
    left: 1rem;

    padding: 0rem;
    margin: 0;
    color: white;
}



.task_card{
    position: relative;
    width: calc(100% - .5rem);
    border-radius: .25rem;
    padding: .25rem;
    height: calc(fit-content + 1rem);
    display: flex;
}



.task_text{
    height: fit-content;
    font-weight: 400;
    color: white;
    font-size: 10px;
}

.service_layout{
    display: grid;
    grid-template-columns: 2fr 1fr;
    margin-bottom: 2rem;
}



#offering_content{
    margin-bottom: 2rem;
}




.offering_table {
    /* Add your custom styles here */
    border-collapse: collapse;
    width: calc(100% - 1rem);
    text-align: left;
    
}

.offering_table th{
    padding: .25rem;
}

.offering_table tr {
    border-bottom: solid 1px var(--background-300);
}


.offering_table td {
    padding: .25rem;
}

.price_class{
    font-size: 18px;
    font-weight: 100;
    margin-bottom: .5rem;
}

.package_type{
    font-weight: 600;
    font-size: medium;
    margin-bottom: .5rem;

}

.package_header{
    text-align: justify;
}

.package_title{
    text-transform: uppercase;
    margin-bottom: .5rem;
}
.package_description{
    margin-bottom: .5rem;
}


#service_description{
    margin-top: 1rem;
    margin-bottom: 1rem;
}


.service_p{
    width: calc(100% - 1rem);
    font-size: 12px;
}


#previewContent{
    padding: .5rem;
}

.feature{
    padding-top: .25rem;
    font-size: 14px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .5rem;
}


.previewButtonActive{
    background-color: var(--action) !important;
    color: white;

}




.package_preview{
    display: flex;
    height: fit-content;
    position: sticky;
    top: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
}


@media (max-width: 768px) {
    .package_preview {
        display: none;
    }

    .service_layout{
        display: grid;
        grid-template-columns: 1fr;
    }
}



.package_preview_header{
    height: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
  }

  .package_preview_tab {
    width: 100%;
    height: 100%;
    display: flex; /* Use flexbox */
    justify-content: center; /* Horizontally center the content */
    align-items: center; /* Vertically center the content */
    text-align: center;
    background-color: var(--background-300); /* Center the text horizontally */
}

.package_preview_tab:hover {
    cursor: pointer; /* Center the text horizontally */
}



























.service_header_layout{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


  .service_text{
    width: calc(100% - 1rem);
    color: var(--font-200);
  }



  .phase_card_layout{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .25rem;
    width: calc(100% - .5rem);
  }


  
@media (max-width: 899px) {
    .phase_card_layout{
        display: flex;
        flex-direction: column;
        gap: .25rem;
    }

  }


.compare_button{
    padding: .5rem 1rem .5rem 1rem;
    background-color: var(--action);
    outline: none;
    border: none;
    border-radius: .25rem;
    color: white;
    margin-top: 1rem;
}

.compare_button:hover{
    cursor: pointer;
}

.tick{
    background-color: var(--action);
    border-radius: .125rem;
    width: 1rem;
    height: 1rem;
    background-image: url('../assets/svg/tick.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;

}

.cross{
    background-color: var(--error);
    border-radius: .125rem;
    width: 1rem;
    height: 1rem;
    background-image: url('../assets/svg/cross.svg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;

}



.service_img{

    aspect-ratio: 1/0.6;
    width: 100%;
    border-radius: .5rem;
    background-color: #a2fac4;

    background-image: url('../assets/service/test.png');

    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}






.current_preview_layout{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 1rem;

}

.action_button{
    padding: .5rem;
    background-color: var(--action);
    outline: none;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: .25rem;;
}

.action_button:hover{
    cursor: pointer;
}



.service_preview_image{
    height: 2rem;
    width: 2rem;
    border-radius: .25rem;
    background-color: #a2fac4;

    background-image: url('../assets/service/test.png');

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}



.service_preview_card_shadow{

    margin-bottom: 1rem;
    background-color: black;
    border-radius: calc(.5rem + 1px);
}

.service_preview_card{
    border: solid var(--background-300) 1px;
    display: grid;
    grid-template-columns: 1fr auto;
    padding: .5rem;
    gap: 1rem;

    border-radius: .5rem;
    background-color: var(--background-200);

    transition: transform 100ms ease-in-out;

}

.service_preview_card:hover{
    transform: translate(0.5rem , -0.5rem);
    cursor:pointer;

    
}

.service_preview_description_layout{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service_preview_progress{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: .25rem;

}

.task_preview_layout{
    display: flex;
    flex-direction: row;
    gap: .25rem;

}

.task_preview_card{
    width: 2rem;
    height: 2rem;
    position: relative;

    border-radius: .125rem;
}

.task_preview_id{
    position: absolute;
    top: .25rem;
    left: .25rem;
    color: white;
}

.phase_preview_name{
    font-size: small;
    color: var(--font-200);
}

.phase_preview_card{
    padding: .25rem;
    border-radius: .25rem;
    display: flex;
    flex-direction: column;
    gap: .25rem;
    background-color:var(--background-300);
}

.current_progress_preview_card{
    height: 100%;
    width: 100%;

    width: 10rem;
    height: 10rem;
}

.task_preview_crad_current{
    height: calc(100% - 2rem);
    width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
    padding: 1rem;
    border-radius: .25rem;
}




.nav_button{
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: .5rem;
    padding: .5rem;
    border-radius: .25rem;
}








.nav_button:hover{
    cursor: pointer;
}



.service_workspace_nav{
    width: 200px;
    display: flex;
    gap: .5rem;
    flex-direction: column;
    margin-top: .5rem;
}

.phase_nav{

    border: solid var(--background-300) 1px;
    background-color: var(--background-200);
    border-radius: .25rem;
    padding: .5rem;
    gap: .5rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    font-size: 12px;

}

.phase_nav_header{
    font-size: small;
    display: grid;
    grid-template-columns: 1fr auto;
    color: var(--font-300);
    align-items: center;
}

.phase_nav_body{
    display: flex;
    flex-direction: column;
    gap: .5rem;
    font-size: small;
}

.task_name {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.collapse{
    display: none;
}

.expand{
    height: fit-content;
}


















.service_workspace_nav_button {
    width: 200px; /* Set a fixed width */
    padding: .5rem;
    border-radius: .25rem;
    text-overflow: ellipsis !important;
    overflow: hidden;
    white-space: nowrap; /* Use white-space instead of text-wrap */
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    color: white;
}

.service_workspace_nav_button:hover{
    cursor: pointer;
}





#content{
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
    margin-bottom: 1rem;
}




.workspace_layout{
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .5rem;
    max-height: calc( 100% - 6rem);

    position: relative;
}


.admin_tools {

    position: fixed; /* Set the position to fixed */
    bottom: 1rem;
    right: .5rem;
    padding: .25rem;
    gap: .5rem;

    display: flex;
    flex-direction: column;

    background-color: var(--background-200);
    border: solid 1px var(--background-300);
    color: white;
    border-radius: .25rem;

    z-index: 10000;
}


.workspace{
    margin-bottom: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;

}




.message_box{
    padding: .5rem;
    border-radius: .5rem;
    background-color: var(--background-300);
    border: solid 1px var(--background-100);


    height: fit-content;
    margin-bottom: .25rem;
    margin-top: .5rem;

    width: 75%;
    display: grid;
    grid-template-columns: auto 1fr;
    font-size: small;
    gap: .5rem;

    color: var(--font-200);
    position: relative;
}

.survey_answer_box{

    padding: .5rem;
    border-radius: .25rem;
    background-color: var(--background-300);
    border: solid 1px var(--background-100);


    height: fit-content;
    margin-bottom: .25rem;
    margin-top: .5rem;

    width: calc(100% - 1rem);
    display: flex;
    flex-direction: column;
    font-size: small;
    gap: .5rem;

    color: var(--font-200);
}


.message_time_stamp{
    margin-left: auto;
    width: fit-content;
    font-size: 10px;
    color: gray;
    width: fit-content;
}

.user_id{
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--action);
    color: white;
    border-radius: 1rem;
    text-align: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: solid var(--background-300) 1px;
    overflow: visible;


}

.message_box_right{
    margin-left: auto;
    border-radius:.25rem .25rem 0 .25rem;
}
.message_box_left {
    margin-right: auto;
    border-radius:.25rem .25rem .25rem 0;
}



.write_comment_section{
    display: grid;
    grid-template-columns: 1fr auto;
    margin-top: .5rem;
    gap: .5rem;
    grid-column: span 2; /* Spanning over 2 columns */
    margin-left: 2rem;
}


.comment_input{
    width: calc(100% - 1rem);
    display: block;
    padding: .5rem;
    outline: none;
    font-size: small;
    border: solid var(--background-200) 1px;
    background: var(--background-300);

    color: var(--font-300);
    border-radius: .25rem;;
}





#chat_write_layout{
    width: 100%;

    display: grid;
    grid-template-columns: 1fr auto;
}


.icon_bar{
    background-color: var(--action);
    margin-right: .5rem;
    height: 1.5rem;
    border-radius: 0 .25rem .25rem 0;
}






.post_box{
    border: solid var(--background-300) 1px;
    background-color: var(--background-200);

    border-radius: .25rem;;
    padding: .5rem;
    padding-left: 0;
    margin-bottom: .25rem;
    margin-top: .5rem;

    display: grid;
    grid-template-columns: 2rem 1fr;
    grid-template-rows: auto;


}

.survey_box{
    border: solid var(--background-300) 1px;
    background-color: var(--background-200);

    border-radius: .25rem;;
    padding: .5rem;
    padding-left: 0;
    margin-bottom: .25rem;
    margin-top: .5rem;

    display: grid;
    grid-template-columns: 2rem 1fr;
    grid-template-rows: auto;


}






.frame_box{
    border: solid var(--background-300) 1px;
    background-color: var(--background-200);

    border-radius: .25rem;
    padding: .5rem;
    padding: 0;
    margin-bottom: .25rem;
    margin-top: .5rem;
    display: flex;
    flex-direction: column;
}









.frame_content{

    display: flex;
    flex-direction: column;
}

.frame_data{

    display: flex;
    flex-direction: column;
}

.frame{
    width: 100%;
    aspect-ratio: 1.85/1;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.frame_icon{
    width: 1.5rem;
    height: 1.5rem;
    border: solid white 1px;
}

.frame_icon_text_layout{
    padding: .5rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .5rem;
    height: fit-content;
    border-bottom: 1px solid var(--background-300);
    color: var(--font-300);
    font-size: 12px;
    width: calc(100% - 1rem);

    justify-content: center;
    align-items: center;
}

.frame_camera_specs{
    display: flex;
    flex-direction: row;
    gap: .5rem;
    justify-content: left;
    align-items: center;

}

.frame_bubble{
    border: solid 1px var(--font-300);
    padding: .25rem .5rem .25rem .5rem;
    color: var(--font-300);
    font-size: 12px;
    width: fit-content;
    border-radius: .25rem;
    height: fit-content;

}


.shot_count{
    color: var(--font-300);
}

.frame_head{
    display: grid;
    grid-template-columns: 1fr auto auto;
    padding: .5rem;
    gap: .5rem;
    justify-content: center;
    align-items: center;
}





/* Minimalistic audio player styles */
.minimal-audio-player {
    display: block;
    width: 100%; /* Adjust width as needed */
    background-color: #f0f0f0;
    border-radius: .25rem;
    height: 1.5rem;
}

.minimal-audio-player audio {
    width: 100%;
    outline: none;
}

.minimal-audio-player audio::-webkit-media-controls-panel {
    background-color: transparent;
    color: #333; /* Adjust color as needed */
}

.minimal-audio-player audio::-webkit-media-controls-play-button {
    display: none; /* Hide the default play button */
}

.minimal-audio-player audio::-webkit-media-controls {
    display: flex;
    align-items: center;
}

.minimal-audio-player audio::-webkit-media-controls-enclosure {
    flex: 1;
    margin-right: 10px;
}

.minimal-audio-player audio::-webkit-media-controls-volume-slider {
    display: none; /* Hide the volume slider */
}

.minimal-audio-player audio::-webkit-media-controls-time-remaining-display,
.minimal-audio-player audio::-webkit-media-controls-current-time-display {
    font-size: 12px;
    color: #666; /* Adjust color as needed */
}

















.sendButton{
    height: 1.5rem;
    width: 1.5rem;

    background-color: var(--action);
    border: none;
    border-radius: .25rem;
    color: white;
    justify-content: center;
    align-content: center;

}

.post_header{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
}

.post_text{

    display: flex;
    flex-direction: column;
    height: fit-content;
}

.post_attachment{
    height: 15rem;
    aspect-ratio: 1/1;

    position: relative;

    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: .5rem;
    overflow: hidden;
    z-index: 10;
    justify-content: right;
    align-items: right;

}



.post_attachment_video{
    height: 15rem;
    aspect-ratio: 1/1;

    position: relative;

    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: .5rem;
    overflow: hidden;
    z-index: 10;
    justify-content: right;
    align-items: right;
    background-color: black;

}


.post_attachment_pdf{
    height: 10rem;
    aspect-ratio: 1/1.414;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: .125rem;
    overflow: hidden;
    z-index: 10;
}


.my_service_cards_layout{
    display: flex;
    flex-direction: column-reverse;
}


.show_comment_button{
    font-weight: bold;
    font-size: small;
    border-bottom: solid var(--font-200) 2px;
    color: var(--font-200);
    width: fit-content;
}

.show_comment_button:hover{
    cursor: pointer;
}

.chat_container{
    grid-column: span 2; 
    padding-left: 2rem;
}


#phase_title{
    height: fit-content;
    color: var(--font-300);

}

.post_top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    margin-bottom: 0.5rem;

}


.phase_header{
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    column-gap: .5rem;

    align-items: center;
    justify-content: center;
    padding: .5rem;
    border: solid var(--background-300) 1px;
    background-color: var(--background-200);
    border-radius: .25rem;

}

#phase_id{
    width: 1.5rem;
    height: 1.5rem;
    text-align: center;
    border-radius: .25rem;

    display: flex;
    justify-content: center;
    align-items: center;

}

.content_layout{
margin-top: .5rem;
        max-height: calc( 100% - 6.5rem);
    display: flex;
    flex-direction: column;


}



.workspace_aside{
    max-height: 100%;





}


#workspace_user_plugin_layout{
    display: grid;
    grid-template-columns: 1;
    grid-template-rows: 2;

}

.workspace_user{
    border: solid var(--background-300) 1px;
    background-color: var(--background-200);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .5rem;
    padding: .5rem;

    border-radius: .25rem;
}


.current_user {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    /* Ensure the container doesn't expand to accommodate negative margins */
    overflow: hidden;
}

/* Adjust margin to overlap */
.current_user > .user_id {
    margin-right: -.25rem;
}


.add_user_button{
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--action);
    color: white;
    text-align: center;
    border-radius: 50%;
    display: flex;
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */

}

.add_user_button:hover{
    cursor: pointer;

}

.post_description{
    font-size: small;
    color: var(--font-200);
}


















#workspace_plugins{
    border: solid var(--background-300) 1px;
    background-color: var(--background-200);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .5rem;
    padding: .5rem;

    margin-top: .5rem;
    border-radius: .25rem;
    height: fit-content;

}


.plugin_box{
    background-color: var(--background-300);
    width: fit-content;
    padding: .5rem;
    border-radius: .25rem;
    font-size: 12px;
    display: grid;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    color: var(--font-300);
    position: relative;
    padding-left: 2rem;
    height: 1.5rem;
}

.plugin_icon{
    background-color: var(--action);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0 .25rem .25rem 0;
    position: absolute;
    left: 0;

}

#plugin_layout{
    display: flex;
    gap: .5rem;
    flex-direction: row;
    flex-wrap: wrap;
    
}




.breadcrum_link{
    margin-top: .5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
}


#workspace_title{
    font-size: 14px;
    background-color: var(--background-200);
    padding: .5rem;
    margin-right: .5rem;
    box-sizing: content-box;
    border-radius: .25rem;
    color: var(--font-300);
    width: calc(100% - 1rem);
    border: solid 1px var(--background-300);
}

#client_information{
    background-color: var(--background-300);
    padding: .5rem;
    border-radius: .25rem;
    font-size: 10px;
}






















.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}


.modal-content{
    height: calc(100vh - 2rem);
    margin: .5rem;

    background-color: var(--background-200);
    border: solid 1px var(--background-300);

    color: var(--font-300);
    padding: .5rem;
    border-radius: .5rem;

    overflow-y: scroll;
    overflow-x: hidden;
}

































#storyboard_layout{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    margin-bottom: 1rem;
}





.storyboard_preview_modal {
    background-color: var(--background-200);
    border: solid 1px var(--background-300);

    color: var(--font-300);
    padding: .25rem;


    width: calc(100vw - .5rem);
    height: calc(100vh - .5rem);
}

.storyboard_preview {
    padding: .5rem;
    background-color: var(--background-300);
    max-width: fit-content;
}







.storyboard_preview_layout{
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    grid-template-rows: 1fr auto;
    height: 100%;
    gap: .25rem;
}




.storyboard_timeline_section{
    display: grid;
    grid-template-columns: 200px 1fr;
    padding: .5rem;
    height: fit-content;
    overflow-y: auto;
    overflow-x: hidden;
    width: calc(100% - 1rem - 2px);
}


#timeline_markers{
    background-color: transparent;
    display: block;
}




.storyboard_preview_list_name{
}

#storyboard_preview_frame{

    aspect-ratio: 1.85/1;
    border: solid var(--background-300) 1px;
    background-color: black;
    margin-bottom: .5rem;
    overflow: hidden;
    width: 50vw;
    max-height: calc(100vh - 400px);
}





#storyboard_timeline{
    width: calc(100vw - 250px);
    overflow-x: scroll;
    overflow-y: hidden;
    height: calc(100% - .5rem);
    padding-bottom: .5rem;
}





#storyboard_preview_timeline{
    width: fit-content;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto auto auto;
    gap: .5rem;
}

#storyboard_video_track{

    display: flex;
    flex-direction: row;
    height: fit-content;
}

#storyboard_audio_track{
    display: flex;
    flex-direction: row;
    height: fit-content;
}

.audio_wave{
}






.storyboard_preview_panel{
    border: solid #fe8d50 1px;
    height: fit-content;
    background-color: var(--background-300);
    grid-column: span 2; 
    overflow: hidden;
}



.storyboard_preview_timeline_frames{
    height: 80px;
    overflow: hidden;
    z-index: 1000;
    background-size:contain;
    background-repeat: no-repeat;
    background-position: left;
    border-radius: .25rem;
    background-color: var(--background-100);
    border: solid 1px var(--background-300);
    box-sizing: border-box;
    display: grid;

}



.storyboard_preview_timeline_frames::after{
    content: "S";
    top: 0;
    left: 0;
    height: .5rem;
    width: 100%;
    font-size: 10px;
    padding:.25rem;
    background-color: #f4b909;
    color: white;
}





.storyboard_preview_audio_frames{
    height: 80px;
    overflow: hidden;
    z-index: 1000;
    border-radius: .25rem;
    background-color: var(--background-100);
    border: solid #4994ff 1px;
    position: relative;
    box-sizing: border-box;
    display: grid;
    align-items: center;
}



.storyboard_preview_control_button{
    display: flex;
    flex-direction: row;
    gap: .5rem;
}

.storyboard_preview_control_panel{
    display: flex;
    flex-direction: row;
    gap: .5rem;
    justify-content: space-between;
}







.timeline_cursor_class{
    height: 100%;
    background-color: var(--action);
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    z-index: 1001;
}
.timeline_cursor_class::after{
    content: "";
    position: absolute;
    top: 0;
    left: calc(-.25rem + 1px);
    height: .5rem;
    width: .5rem;
    background-color: var(--action);
}







.timeline_track_info{
    border-right: solid .25rem var(--background-200);
    padding-top: 15px;

}

.stroyboard_preview_panel_header{
    border-bottom: solid 1px var(--background-200);
    padding: .25rem;
}


#portfolio{
    padding: .5rem;
}

#portfolio_content{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    overflow-x: auto;

}

.work_card{

    height: fit-content;

}

.work_asset{
    width: 100%;
    aspect-ratio: 1/1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: .5rem;
}


.work_asset_container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .5rem;
    aspect-ratio: 3/1;

}

#overlay{
    display: none;
}

.overlay_visible{
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: block !important;
    width: 100vw;
    height: 100vh;
}

#overlay_content{
    background-size: contain;
    width: 100%;
    height: 100%;
}

.work_asset_full_screen{
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.close_button{
    background-color: var(--action);
    outline: none;
    border: none;
    border-radius: .25rem;
    color: white;
    width: 2rem;
    height: 2rem;
    justify-self: right;
    position: absolute;

    top: .5rem;
    right: 1rem;
    z-index: 20000;
}
















































.course_card_layout{
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.course_phase_card {
    border: 1px solid var(--background-300);
    padding: .5rem;
    margin-bottom: .5rem;
    border-radius: .25rem;
    background: var(--background-200);
    color: var(--font-300);
}

.course_task_layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;

}

.course_task_card {
    padding: .25rem;
    border-radius: .125rem;
    border: solid 1px var(--background-300);
    font-size: small;
    position: relative;
    padding-left: 1.5rem;
    overflow: hidden;
    margin-bottom: .25rem;

}

.course_task_color{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 1rem;
    border-radius: .125rem;
}

.course_task_image {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: cover;
    border-radius: .125rem;
}

.course_task_title {
    font-size: 1.2em;
    margin-top: 8px;
}

.course_task_description {
    font-size: 0.9em;
    color: #555;
    margin-top: 4px;
}


.course_video-container {
    position: relative;
    margin: 20px auto;
    background: #fffffd;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    justify-content: center;
    align-items: center;
    height: fit-content;
}

/* Basic styling for video element */
video {
    width: 100%;
    height: auto;
}

/* Styling for custom controls */
.controls {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
}

.controls button,
.controls input[type="range"] {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.progress-bar {
    width: 80%;
    height: 5px;
    background-color: #444;
    border-radius: 5px;
    margin: 0 10px;
}

.progress-bar input[type="range"] {
    width: 100%;
    background: transparent;
}

.volume-bar {
    width: 100px;
}

.course_image{
    height: 4rem;
    width: 4rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.course_description_layout{
    border: solid var(--background-300) 1px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    padding: .5rem;
    border-radius: .25rem;
    background-color: var(--background-200);


}

/* Hide the description by default (optional) */
.course_description_collapsed #course_description {
    display: none;
}

.asset_box{
    background-color: var(--background-200);
    border: solid var(--background-300) 1px;
    padding: .5rem;
    border-radius: .25rem;
    
}

#course_assets{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .25rem;

}