@import url('components/progress.css');
@import url('components/checkbox.css');
@import url('components/butons.css');
@import url('components/dropdown.css');
@import url('components/inputs.css');
@import url('components/modals.css');
@import url('components/notifications.css');
@import url('components/selects.css');
@import url('components/tab.css');
@import url('components/tables.css');
@import url('components/theme-switch.css');
@import url('components/kanban.css');
@import url('components/filters.css');
@import url('components/paginate.css');

@import url('account.css');
@import url('menu.css');
@import url('pages.css');

@import url('prism.css');
@import url('utils.css');
@import url('themes.css');

html { 
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

body {
    font-family: Inter;
    font-size: 0.95rem;
    font-weight: 400;

    background-color: var(--background-color);
    background-image:url('/static/images/background.png'); 
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;

    margin: 0;
    padding: 0;

    color: var(--text-color);
}

form {
    padding: 0;
    margin: 0;
}

*, ::before, ::after {box-sizing: border-box; border-width: 0;}

a { text-decoration: none;}

p, span {display: inline; margin: 0;}

input, textarea, select, option, select:focus {outline: none;}

svg {
    fill:rgb(212, 212, 212);
    cursor: default;

    outline: none;
    user-select: none;
}

svg.clck:hover {
    cursor: pointer;
    fill:rgb(51, 144, 236);
}

.logo-hello {
    background-image: var(--logo);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 45px;
}

.transition {
    transition: background-color var(--transition-time) ease-in-out, 
                color var(--transition-time) ease-in-out;
}

.profile-image{
    width: 175px;
    height: 175px;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    display: block;
}

.team-members {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.member-image{
    display: block;
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto;
}

.widget {
    background: var(--background-color);
    position: absolute;
    min-width: 200px;
    left: -100%;

    border-radius: var(--border-radius);
    margin-top: 0.5rem;
    
    font-size: 0.85rem;
    z-index: 1;
    padding: 0.5rem 0.5rem;
}

.block {
    font-size: 0;
}

.tag {
    justify-content: center;
    display: flex;
    border-radius: var(--border-radius);
    padding: .45rem;
    color: white;
    letter-spacing: .7px;
    font-size: 0.85rem;
    align-items: center;
}

.roles-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:0.75rem !important; 
}

.role-card {
    display: flex;
    width: 100%;
}

.role-description {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.role-meta {
    display: flex;
    flex-direction: row;
}

.login {
    width: 17.5%;
}

.login form {
    padding: 0rem 0.75rem 0.75rem 0.75rem;
    background-color: var(--static-color);
    justify-content: space-around;
    height: 300px;
}

.forget {
    letter-spacing: 1px;
    font-weight: 400;
    color: var(--placeholder-color);
    font-size: 0.75rem;
    user-select: none;
    text-align: right;
    text-decoration: none;
    padding: 0rem 0.4rem;
    width: fit-content;
}

.error-text {
    letter-spacing: 1px;
    font-weight: 400;
    color: #ff6464;
    font-size: 0.75rem;
    user-select: none;
    text-align: justify;
    text-decoration: none;
    padding: 0rem 0.75rem;    
}

.confirm {
    justify-content: center;
    display: flex;
    align-items: center;

    background-color: var(--static-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    padding: .45rem;

    color: var(--text-color);

    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border: 0.1rem solid var(--border-color);
}

.edit-card {
    background-color: var(--background-lg-color);
    border-radius: 10px;
    min-width: 200px;
    padding: 0.3rem;
    z-index: 10;
    top: 0;
    right: -200px;
    transition: all 0.3s ease-in-out;
}

.edit-card.active {
    right: 10px;   
}

.edit-card > button {
    background-color: inherit;
    color: var(--text-color);
    cursor: pointer;
    padding: 0.4rem;
    border-radius: inherit;
    font-family: inherit;
    font-size: 0.825rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.edit-card > button:hover {
    background-color: var(--color-table);
}

.task {
    padding: 0.4rem 0rem;
    border-radius: 10px;
    text-decoration: none;
}

.task:hover{
    background-color: var(--color-table);
}

.line-through {
    text-decoration-line: line-through !important;
}

.banner {
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 0.9rem;
    user-select: none;
    color:var(--text-color);

    padding: 0rem 0.35rem;

    white-space: nowrap;
    overflow: hidden;
    word-wrap: break-word;
    text-overflow: ellipsis;
}

.text {
    font-size: .8rem;
    font-weight: 300;
    letter-spacing: .75px;

    text-align: justify;
    display: block; 
    line-height: 1.6;
    word-wrap:break-word;

    color:var(--text-color);
}

.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.projects {
    gap: 12rem;
}

.todo {
    cursor: pointer;
    padding: .5rem .35rem;
    border-radius: var(--border-radius);
    user-select: none;
}

.todo:hover {
    background-color: var(--color-table);
}

.todo .text {
    font-size: .85rem;
    text-align: justify;
}

.todo h3 {
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-color);
}

.l {
    border-top: 0.25rem solid var(--color-table);
}

#projectBoard {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
}

.project-card {
    background-color: var(--background-color);
    padding: 0.75rem;
    cursor: pointer;
    min-height: 125px;
    min-width: 250px;
}

.project-card .card-header {
    font-weight: 800;
    letter-spacing: .55px;
    color: var(--text-color);
}

.project-card:hover {
    background-color: var(--color-table);
}

.status-id, .todo-category-id {
    color:white;
    height: fit-content;
    font-size: .7rem;
    letter-spacing: .7px;
    padding: 0.25rem 0.7rem;
    border-radius: var(--border-radius);
    user-select: none;
}

.todo-select {
    font-weight: 400;
    display: flex;
    justify-content: center;
    font-size: .7rem;
    letter-spacing: .7px;
    padding: 0.25rem 0.7rem;

    margin: 0;

    /* background-color: var(--items-color);
    color: white; */
}

.todo-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    border-radius: 7px;
}

.project-card  .dates {
    font-size: .8rem;
    text-align: right;
}

.card-roles {
    margin-top: 3rem;
    align-items: baseline; 
    position: fixed; 
    bottom: 20px; 
    max-width: var(--max-width);
}

.project-card .description {
    width: 100%;
    font-size: .8rem;
    font-weight: 300;
    text-align: justify;
    letter-spacing: 0.65px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
    word-wrap:break-word;

    user-select: none;
}

.gu-unselectable .tasks-container {
    overflow: hidden !important;
    touch-action: none !important;
}

.teams {
    width: 100%;
    position: absolute;

    padding: .8rem;
    background: var(--background-lg-color);

    display: flex;
    flex-direction: column;
    gap: .55rem;

    left: 0;
    top: 0;
    
    z-index: 100;
}

.label {
    font-weight: 300;
    letter-spacing: .35px;
    font-size: 0.9rem;
}

.required::after {
    content: " *";
    color: #dc2b2b;
    font-weight: bold;
}

.string {
    font-weight: 600;
    letter-spacing: .35px;
    font-size: 1.05rem;
    color: var(--text-color);
}

.team-card svg {
    height: 22px;
    width: fit-content;
}

.teams .edit-url {
    position: absolute;

    right: -3rem;
    background-color: var(--background-lg-color);
    border-radius: var(--border-radius);
    border: 0.1rem solid var(--border-color);
    
    z-index: 150;
    padding: .35rem;
}

.teams .a-href {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.a-href a{
    text-decoration: none;
    color: var(--text-color);
}

.hidden {
    display: none;
}

.cropper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem;
    border-radius: var(--border-radius);
    margin-inline: auto;
    top: 20px;
    left: 0;
    right: 0;
    position: fixed;
    width: 350px;
    max-width: 90vw;
    flex-direction: column;
    z-index: 300;
}

.cropper-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.clck-hvr {
    cursor: pointer;
    color:var(--placeholder-color);
    letter-spacing: 0.75px;
    font-weight: 400;
}

.clck-hvr:hover {
    color:var(--items-color);
}

.footer {
    position: fixed;
    bottom: 20px;

    width: calc(100% - 2rem);
    transform: translateX(-50%);
    left: 50%;

    user-select: none;
}

.copyright {
    display: flex;
    width: 100%;
    position: relative;
    margin: auto;
    max-width: var(--max-width);

    color:var(--placeholder-color);

    font-family: inherit;
    font-size: .8rem;
    letter-spacing: 1px;
    font-weight: 400;
}