/* Alert message box */
.alert {
    padding: 15px;
    background-color: #d4554c; /* Red */
    color: white;
    margin-bottom: 0;
    font-size: 16px;
}

.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn:hover {
    color: black;
}

/* Search product modal */
.search-product-container {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
    padding: 20px 0;
}

.search-product {
    display: inline-block;
    width: 50%;
}

/* Custom properties */
.mb-0 {
    margin-bottom: 0;
}

.mr-10 {
    margin-right: 10px;
}

.position-relative {
    position: relative;
}

.top-0 {
    top: 0;
}

.cursor-pointer {
    cursor: pointer;
}

/* Inventory Details */
.update-btns-container {
    margin-top: 7px;
}

.row-green {
    background-color: #66fa84;
}

.row-yellow {
    background-color: #e8e664;
}

/* Stations */
.station-exit-search-btn {
    padding: 3px 12px;
    margin-bottom: 2px;
}

/* Authentication */
.login {
    margin: 3rem;
}
