html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

/*body {
  margin-bottom: 60px;
}
*/
.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}


.skeleton {
    background: linear-gradient(270deg, #b0b0b0 25%, #d0d0d0 50%, #b0b0b0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading-rtl 1.5s infinite;
    display: inline-block;
    border-radius: 4px;
}

.skeleton-text {
    height: 12px;
    margin-bottom: 8px;
}

.skeleton-stars {
    height: 16px;
    width: 80px;
    margin-bottom: 8px;
}

.skeleton-paragraph {
    height: 16px;
    margin-top: 8px;
}

.w-75 {
    width: 75%;
}

.w-50 {
    width: 50%;
}

.w-100 {
    width: 100%;
}

@keyframes skeleton-loading-rtl {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.review-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    background-color: #fff;
}

.review-stars {
    color: #f39c12;
}

.no-items-message {
    text-align: center;
    color: #888;
    font-size: 16px;
    margin-top: 20px;
}


.skeleton-amount {
    height: 30px;
    width: 50px;
}






/*Start Section : View :Add New stock */
.stock-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    position: relative;
}

    .stock-card h6 {
        margin-bottom: 0.25rem;
    }

    .stock-card small {
        color: #888;
    }

.remove-card-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    color: #dc3545;
    cursor: pointer;
}
/* End Section : View :Add New stock */

/*Start Section : View : Inventory | Item | Index */
#loading-indicator {
    display: none;
    text-align: center;
    padding: 1rem;
    color: #666;
}

.status-badge.in-stock {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.low-stock {
    background-color: #fff3cd;
    color: #856404;
}

.status-badge.out-of-stock {
    background-color: #f8d7da;
    color: #721c24;
}

.item-card {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
    border-left: 6px solid transparent;
}

    .item-card.low-stock {
        border-left-color: #ffc107;
    }

    .item-card.out-of-stock {
        border-left-color: #dc3545;
    }

    .item-card.in-stock {
        border-left-color: green;
    }

.card-shadow {
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-radius: 12px;
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
/*End Section : View : Inventory | Item | Index */
