@import "styleguide.css";

* {
    box-sizing: border-box;
}

html {
    display: flex;
}

.container-fluid {
	/* margin: 0 auto; */
	max-width: 1500px;
}

nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
}

.navbar  {
    display: flex;
    height: 73px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    position: relative;
    align-self: stretch;
    width: 100%;
    z-index: 2;
    background-color: #e7fff1;
    border-radius: 4px;
}

.link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 4px;
    overflow: hidden;

    
}

.nav-text {
    font-family: var(--text-20-font-family);
    font-weight: var(--text-20-font-weight);
    color: #1e1e1e;
    font-size: var(--text-20-font-size);
    letter-spacing: var(--text-20-letter-spacing);
    line-height: var(--text-20-line-height);
    white-space: nowrap;
    font-style: var(--text-20-font-style);
}

.left-links {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding: 4px 8px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 4px;
    overflow: hidden;
}

.right-links {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    padding: 5px 10px;
    position: relative;
    flex: 0 0 auto;
}

.navbar a {
    /* color: var(--color-text-primary); */
    color: var(--color-brand-primary);
}

.navbar a:hover {
    color: var(--color-brand-primary);
    
}


p {
    position: relative;
    flex: 1;
    margin-top: -1.00px;
    font-family: var(--text-24-font-family);
    font-weight: var(--text-24-font-weight);
    color: #1e1e1e;
    font-size: var(--text-24-font-size);
    letter-spacing: var(--text-24-letter-spacing);
    line-height: var(--text-24-line-height);
    font-style: var(--text-24-font-style);
}

.text-wrapper {
    font-family: var(--text-20-font-family);
    font-weight: var(--text-20-font-weight);
    color: #1e1e1e;
    font-size: var(--text-20-font-size);
    letter-spacing: var(--text-20-letter-spacing);
    line-height: var(--text-20-line-height);
    white-space: nowrap;
    font-style: var(--text-20-font-style);
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: #e7fff1;
    min-width: 800px;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    padding: 0 10px;
    
}

/* .button-style-comp {
    
    
} */

button {
    min-width: 100px;
    justify-content: center;
    padding: 8px 12px;
    
    border: 2px solid var(--color-brand-primary);
    display: inline-flex;
    align-items: center;
    position: relative;
    flex: 0 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
    /* flex: 1;        */

    /* button text */
    font-weight: var(--text-20-font-weight);
    font-size: var(--text-20-font-size);
    letter-spacing: var(--text-20-letter-spacing);
    line-height: var(--text-20-line-height);
    font-style: var(--text-20-font-style);
    
}

#player-details-confirm button {
    padding: 2px 4px;
    min-width: 50px;
    font-size: var(--text-16-font-size);
}

main * {
    border-radius: 8px;
}

button.impact {
    background-color: var(--color-brand-primary);
    color: var(--color-brand-secondary);	
}
button.impact:hover {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), var(--color-brand-primary);
}
button.impact:disabled {
   background: #76817a;
   border-color: #76817a;
/* 
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
font-size: 20px;
line-height: 23px;
text-align: center;


/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 1; 

}

button.light {
    background-color: var(--color-brand-secondary);
    color: var(--color-brand-primary);
}
button.light:hover {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), var(--color-brand-secondary);
}
button.light:disabled {
    background: #d8d8d8;
    border-color: #d8d8d8;
    color: #487e5e;
}


.content-comp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
}

.desktop-info-comp {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border-radius: 4px;
    overflow: hidden;
}

.single-info-comp {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    padding: 4px;
    position: relative;
    flex: 1;
    align-self: stretch;
    flex-grow: 1;
    background-color: #ffffff;
    border-radius: 4px;
}

.top-bar {
    box-sizing: border-box;

    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    padding: 4px;
    gap: 8px;
    border-radius: 4px;

    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 1;
} 

.top-bar span {
    font-family: var(--text-16-font-family);
    font-weight: var(--text-16-font-weight);
    color: var(--color-text-primary);
    font-size: var(--text-16-font-size);
    letter-spacing: var(--text-16-letter-spacing);
    line-height: var(--text-16-line-height);
    white-space: nowrap;
    font-style: var(--text-16-font-style);
}
.info-left {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 8px;

    /* Inside auto layout */
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 1;
}

.profile-pic {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    border: 1px dashed;
    border-color: var(--color-text-primary);
}

.info-left-text {
    /* Auto layout */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0px;
    gap: 8px;

    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
}

.name-frame {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}
  
.level-info {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 4px;
    overflow: hidden;
}

.info-right {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0px;
    gap: 8px;

    /* Inside auto layout */
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 1;
}

.info-right-text {

    /* Auto layout */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 0px;
    gap: 8px;

    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
}

.health-info {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    flex: 0 0 auto;
}

.currency-info {
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 10px;

    width: 59px;
    height: 19px;


    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
}

.workspace {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border-radius: 4px;
}

.workspace-content {
    display: flex;
    flex-direction: column;
    /* min-width: 400px; */
    align-items: flex-start;
    gap: 15px;
    padding: 10px;
    position: relative;
    flex: 1;
    align-self: stretch;
    flex-grow: 1;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.timer-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.timer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 4px 16px;
    position: relative;
    flex: 0 0 auto;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid;
    border-color: #1e1e1e;
}

.timer-text {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Roboto-Medium", Helvetica;
    font-weight: 500;
    color: #1e1e1e;
    font-size: 40px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
}

.status-line {
    gap: 12px;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.status-container {
    justify-content: flex-end;
    gap: 8px;
    padding: 4px;
    flex: 1;
    flex-grow: 1;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
  }

.status {
    position: relative;
    flex: 1;
    margin-top: -1.00px;
    font-family: var(--text-24-font-family);
    font-weight: var(--text-24-font-weight);
    color: #1e1e1e;
    font-size: var(--text-24-font-size);
    text-align: right;
    letter-spacing: var(--text-24-letter-spacing);
    line-height: var(--text-24-line-height);
    font-style: var(--text-24-font-style);
}

.task-entry-container {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

.list-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}


.quest-comp {
    display: flex;
    flex-direction: column;
    width: 1009px;
    align-items: center;
    gap: 8px;
    padding: 8px;
    position: relative;
    background-color: #f2f2f2;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid;
    border-color: #1e1e1e;
  }
  
  .quest-comp .header-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 2px 0px;
    position: relative;
    flex: 0 0 auto;
}

/* desktop-testing */ .list {
    display: flex;
    flex-direction: column;
    width: 680px;
    align-items: flex-start;
    gap: 5px;
    position: relative;
    flex: 0 0 auto;
  }
  
  /* desktop-testing */ .list-item-comp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 8px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: #f2f2f2;
    border-radius: 4px;
    overflow: hidden;
  }
  
  /* desktop-testing */ .list-item-text-frame {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    flex: 1;
    flex-grow: 1;
    border-radius: 4px;
    overflow: hidden;
}

/* desktop-testing */ .list-item-text {
    position: relative;
    flex: 1;
    height: 38px;
    margin-top: -1.00px;
    font-family: var(--text-16-font-family);
    font-weight: var(--text-16-font-weight);
    color: #1e1e1e;
    font-size: var(--text-16-font-size);
    letter-spacing: var(--text-16-letter-spacing);
    line-height: var(--text-16-line-height);
    font-style: var(--text-16-font-style);
  }
  
  /* desktop-testing */ .description-text {
    position: relative;
    width: fit-content;
    font-family: var(--text-20-font-family);
    font-weight: var(--text-20-font-weight);
    color: #8f8f8f;
    font-size: var(--text-20-font-size);
    letter-spacing: var(--text-20-letter-spacing);
    line-height: var(--text-20-line-height);
    white-space: nowrap;
    font-style: var(--text-20-font-style);
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 28px 16px;
    position: relative;
    background-color: #e7fff1;
    border-top-width: 1px;
    border-top-style: solid;
    border-color: #007a32;
}

.name-and-copyright {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    position: relative;
    flex: 0 0 auto;
}
.app-info {
    display: flex;
    flex-wrap: wrap;
    max-width: 600px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px 44px;
    padding: 0px 12px;
    position: relative;
    flex: 1;
    flex-grow: 1;
  }
  
  /* desktop-testing */ .footer-section {
    display: inline-flex;
    flex-direction: column;
    height: 145px;
    align-items: flex-start;
    padding: 0px 4px;
    position: relative;
    flex: 0 0 auto;
  }

  /* desktop-testing */ .heading {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    padding: 5px 0px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 4px;
    overflow: hidden;
  }
  
  /* desktop-testing */ .text-wrapper-6 {
    font-family: var(--text-16-font-family);
    font-weight: var(--text-16-font-weight);
    color: var(--color-text-primary);
    font-size: var(--text-20-font-size);
    letter-spacing: var(--text-16-letter-spacing);
    line-height: var(--text-16-line-height);
    font-style: var(--text-16-font-style);
  }
  
  /* desktop-testing */ .subheading {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 5px 0px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border-radius: 4px;
    overflow: hidden;
}

.subheading a {
    font-family: var(--text-16-font-family);
    font-weight: var(--text-16-font-weight);
    color: #007a32;
    font-size: var(--text-16-font-size);
    letter-spacing: var(--text-16-letter-spacing);
    line-height: var(--text-16-line-height);
    white-space: nowrap;
    font-style: var(--text-16-font-style);
}

.most-recent {
    font-weight: bold;
}

.task-display ul {
    margin: 5px 0 0 0;
    padding: 0;
    list-style-type: none;
}

.timestamp {
    font-size: .9em;
}

.player-input {
    width: 80px
}

/* #quest-status, .quest-item, .choose-quest-text {
    padding: 2px;
} */

.quest-item {
    /* border: 0.5px solid;
    border-color: var(--color-text-primary); */
    /* margin: 0 0 4px 0; */
	margin-bottom: 4px;
    
}

.previous-stages-header {
    margin-top: 10px;
}



.hidden {
    visibility: hidden;
    margin: 0;
    padding: 0;
    position: absolute;
}

.inventory-slot {
    background-color: #f0f0f0;
    border: 2px solid #ccc;
    border-radius: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    max-width: 60px;
    max-height: 60px;
    width: 100%;
    height: 100%;
    padding: 2px;
    box-sizing: border-box;
}
.inventory-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inventory {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    width: 100%;
    max-width: 120px;
    min-width: 50px;
    margin: 0 auto;
}