@media print {.no-print {display: none;}}

body {
    overflow-y: hidden;
}

main {
    overflow-y: scroll;
    scrollbar-width: thin;
    margin: 63.33px 0 0 0;
    height: calc(100vh - 63.33px);
}

.pagebody {
    height: calc(100vh - 63.33px);
}

.dropdown-toggle:after { content: none }

/**********/
/* NAVBAR */
/**********/

li.nav-item {
    padding: 2px 10px;
}

li.nav-item:hover {
    border-radius: 5%;
    filter: drop-shadow(0px 0px 4px #00000080); 
}

/***********/
/* SIDEBAR */
/***********/

.layout {
    display: grid;
    grid-template-areas: "sidebar main";
    grid-template-columns: 1fr 5fr;
    gap: 1.5rem;
}

.sidebar {
    position: -webkit-sticky;
    position: sticky;
    padding-top: 3rem;
    top: 0;
    display: block !important;
    height: calc(100vh - 33.33px);
    padding-left: 0.25rem;
    margin-left: -0.25rem;
    overflow-x: hidden;
    /* overflow-y: auto; */
}

/**********/
/* TOOLS  */
/**********/

.card {
    flex: 1 1 400px;
}

.card label {
    width: 75px;
    color: #6A6A6A;
}

.card input:not([type=radio]) {
    width: 150px;
}

.form-row {
    align-items: flex-end;
}

/**********/
/*  WHSE  */
/**********/

td.priority {
    min-width: 40px !important;
    max-width: 65px !important;
}

td.packer {
    min-width: 150px !important;
}

table.event {
    border-spacing: 0px!important;
}

table.event th {
    padding: 0px!important;
}

/**************/
/*  DROPZONE  */
/**************/

/* update dropzone styles to use bootstrap with light and dark mode toggle */


#dropzone {
    border: 3px dashed #dce1e8;
    padding: 50px;
    width: 300px;
    max-width: 90%;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

#dropzone:hover {
    transform: scale(1.02);
    border-color: #007bff;
}

.browse {
    color: #007bff;
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid #007bff;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.browse:hover {
    background-color: #007bff;
    color: #fff;
}

#dropzone.dragover {
    transform: scale(1.02);
    border-color: #007bff;
    background-color: #e6f7ff;
}

.feedback {
    font-size: 1.1em;
    margin-top: 20px;
    color: #2c7be5; /* Default to a positive color, you can change this based on the feedback type (error/success) */
}

/*****************/
/*  AGENT PILLS  */
/*****************/

.clickable {
    transition: all 0.1s ease;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
    cursor: pointer;
}

.clickable:hover {
    transform: scale(1.03);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.clickable:active {
    transform: scale(1);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
}

/**************/
/*  Job Page  */
/**************/
.jobrow {
    position: relative;
}

.jobrow::after {
    content: "";
    position: absolute;
    border: 1 px solid #FAFAFA;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 0, 0.2);
    mix-blend-mode: overlay;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.jobrow:hover::after {
    opacity: 1;
}

.note-header {
    position: absolute;
    top: 0;
    left: 1rem;
    right: 0;
    font-size: 0.6rem;
    color: rgba(0, 0, 0, 0.65); /* Optional: Slightly reduced opacity */
}