* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Inria Sans;
    background-color: #F8C8DC;
    font-size: 18px;
    display: flex;
    justify-content: center;
    width : 100%;
    text-decoration: none;
}

.container {
    width: 95%;
}

.header {
    margin-top: 23vh;
    display: flex;
    align-items: center;
    font-weight: bolder;
    font-size:4vh;

}

.header .headBack{
    position: absolute;
    left: 17%;
}

.header .headSprint{
    position: absolute;
    right: 20%;
}

.card a, .card a:visited, .card a:hover {
    display: flex;
    flex-direction: column; /* Display cards vertically */
    align-items: flex-start; /* Align card content to the left */
    width: 98%;
    text-decoration: none;
    color: inherit;
    font-size: 1vw;
    margin-bottom: 1.5vh; /* Adjust spacing between cards */
    border: black solid 0.1vw;
    border-radius: 0.5vw;
    background-color: #FFE5EC;
    padding-left: 1vw; /* Add left padding to push content to the right */
}

.card a:hover{
    background-color: #ffa6c1;
}

.TaskTitle {
    flex: 1.5; /* 40% of the space */
    text-align: left;
}

.TaskStatus{
    margin-bottom: 0.5vh;
    margin-top: 0.5vh;
    font-weight:lighter;
    color:black;
}

.urgent, .important, .medium, .low, .TaskStoryPoints{
    flex: 1;
    text-align: left;
}

.urgent {
    margin-bottom: 0.5vh;
    margin-top: 0.5vh;
    font-weight:lighter;
    color: red;
}
.urgent::before {
    margin-bottom: 0.1vh;
    margin-top: 0.1vh;
    content: "";
    display: inline-block;
    width: 0.5vw;
    height: 0.5vw;
    background-color: red;
    border-radius: 50%;
}

.important {
    margin-bottom: 0.5vh;
    margin-top: 0.5vh;
    font-weight:lighter;
    color: orange;
}
.important::before {
    margin-bottom: 0.1vh;
    margin-top: 0.1vh;
    content: "";
    display: inline-block;
    width: 0.5vw;
    height: 0.5vw;
    background-color: orange;
    border-radius: 50%;
}

.medium {
    margin-bottom: 0.5vh;
    margin-top: 0.5vh;
    font-weight:lighter;
    color: rgb(189, 189, 9);
}
.medium::before {
    margin-bottom: 0.1vh;
    margin-top: 0.1vh;
    content: "";
    display: inline-block;
    width: 0.5vw;
    height: 0.5vw;
    background-color: rgb(189, 189, 9);
    border-radius: 50%;
}

.low {
    margin-bottom: 0.5vh;
    margin-top: 0.5vh;
    font-weight:lighter;
    color: green;
}
.low::before {
    margin-bottom: 0.1vh;
    margin-top: 0.1vh;
    content: "";
    display: inline-block;
    width: 0.5vw;
    height: 0.5vw;
    background-color: green;
    border-radius: 50%;
}

.TaskTitle{
    margin-bottom: 0.5vh;
    margin-top: 0.5vh;
    font-size: 1.2vw;
    font-weight: bold;
    margin-bottom: 1vh;
    max-width: 90%;
    overflow-wrap:break-word;
}


.button4 {
    display: inline-block;
    font-size: 1.5vw;
    padding-top: 0.4vw;
    padding-bottom: 0.4vw;
    padding-left: 0.4vw;
    padding-right: 0.4vw;
    font-family: Inria Sans;
    cursor: pointer;
    text-align: center;
    vertical-align: center;
    text-decoration: none;
    outline: none;
    color: black;
    background-color: #FFE5EC;
    border: none;
    border-radius: 0.25vw;
    box-shadow: 0 0.1vw #999;
}

.button4:hover {
    background-color: #ffa6c1;
}

.button4:active {
    background-color: #ffa6c1;
    box-shadow: 0 0.1vw #ccc;
    transform: translateY(0.2vw);
}

#leftCardContainer::-webkit-scrollbar {
    width: 0.25vw;
    border-radius: 5vw;
}

#leftCardContainer::-webkit-scrollbar-thumb {
    background-color: darkgrey; 
    border-radius: 5vw;
}

#leftCardContainer::-webkit-scrollbar-thumb:hover {
    background-color: grey;
}

#leftCardContainer::-webkit-scrollbar-track {
    background-color: lightgrey;
}

#rightCardContainer::-webkit-scrollbar {
    width: 0.25vw;
    border-radius: 5vw;
}

#rightCardContainer::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    border-radius: 5vw;
}

#rightCardContainer::-webkit-scrollbar-thumb:hover {
    background-color: grey;
}

#rightCardContainer::-webkit-scrollbar-track {
    background-color: lightgrey;
}

#titlesDropdown {
    position:absolute;
    font-size: 0.8vw;
    padding: 0.25vw 0.3vw;
    box-shadow: 0 0.1vw #999;
    border-radius: 0.25vw;
    appearance: none;
    background-color: #FFE5EC;
    cursor: pointer;
    transition: border 0.3s ease;
    right: 22.3%;
    top: 26vh;
    max-width: 120px; /* Adjust the max-width as needed */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

#titlesDropdown:hover {
    border-color: black;
    background-color: #ffa6c1;

}

#titlesDropdown:focus {
    outline: none;
    border-color: #ffa6c1;
}

body {
    background-image: url('../Icons/BackgroundImage.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    background-attachment: fixed; /* Optional: this will ensure the image stays in place when the content is scrolled. */
    z-index: -1;
}

.bottom-navbar {
    width: 100%;
    background-color: #333; 
    overflow: auto; 
    position: fixed; 
    bottom: 0; 
    left: 0;
    z-index: 1000; 
    font-size: 1.5vw; 
  }
  
  .bottom-navbar a {
    float: left; 
    display: block;
    text-align: center;
    padding: 1vh 1vw; 
    text-decoration: none;
    color: white;
    font-size: 1.5vw; 
  }
  
  .bottom-navbar a:hover {
    background-color: #ddd;
    color: black;
  }