@font-face {
    font-family: 'Roboto Mono';
    src: url('~/fonts/RobotoMono-Regular.ttf') format('truetype');
}

.main-content {
    background-color: #517659;
    display: flex;
    justify-content: flex-start;
    align-items: center;  /* Horizontally center */
    flex-direction: column;
    height: 100vh;  /* Ensure the body takes up the full viewport height */
    margin: 0;
    font-family: 16px 'Roboto Mono', monospace;
    padding: 5rem;
}

.hide {
    display: none;
    pointer-events: none;
    position: absolute;
    height: 150px;
}

.card:hover + .hide {
    display: flex;
    flex-direction: column;
    color: blue;
    /* height: 150px; */
    z-index: 15;
    background-color: #313131;
}

.card {
    display: flex;
    height: 150px;
}

.picks {
    display: flex;
    flex-direction: row;
    /* flex-wrap: wrap; */
    /* width: 100%; */
}

img[name="stats-1"] {
    height: 250px;  /* Set the desired width */
    width: auto;  /* Maintain aspect ratio */
}


.wr.table td {
    text-align: center;
}

.file-upload {
    display: block;
    width: 500px;
    font-size: 16px;
    margin-top: 20px;
    border: 1px solid #6bc2a1;
    label {
        display: block;
        margin-bottom: 5px;
    }
}

.pick-upload {
    display: block;
    width: 500px;
    font-size: 16px;
    margin-top: 20px;
    border: 1px solid #6bc2a1;
    label {
        display: block;
        margin-bottom: 5px;
    }
}



.new-pod,
.find-pod,
.history,
.review-draft{
    display: block;
    width: 500px;
    font-size: 16px;
    margin-top: 20px;
    border: 1px solid #6bc2a1;
}

.new-pod label,
.find-pod label,
.review-draft label {
    display: block;
    margin-bottom: 5px;
}

.textarea-search {
    display: none;
    /* display: block; */
    flex-direction: row;
}

#draftID-input {
    width: 60px;
}


/* from phil */
.column { 
    width: 30%;
    width: calc(100% - 30px);
    max-width: 400px;
    margin: 10px;
    background-color: #517659;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  }

.board {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.add-card-btn {
    background-color: #345e35;
    border: none;
    padding: 5px;
    border-radius: 2px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    width: 90px;
    height: 30px;
}

.card-input {
    width: 75%;
    padding: 2px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 14px;
}
/* end phil */