* {
    box-sizing: border-box;
    margin: 0;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
}

p {
    margin-bottom: 0;
}

.container {
    min-height: 80vh !important;
}

:root {
    --primary-blue: #006eb9;
    --primary-green: #9cc500;
    --bg-dark: #212529;
    --text-dark: #212529;
    --text-light: #fff;
}

.header_top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.header_top .logo {
    width: 180px;
}

nav {
    padding: 8px 0;
    position: sticky !important;
    top: 0 !important;
    z-index: 999;
}


.nav-link {
    color: var(--text-light) !important;
    border-radius: 50px;
    margin-right: 10px;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.nav-link:hover {
    background-color: #ffffff5b;
}

.nav-link.login {
    background-color: #fff;
    color: var(--text-dark) !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.login:hover {
  background-color: #d1d1d1;
}

.dropdown-item:hover {
    color: var(--text-light) !important;
    background-color: #ffffff33 !important;
}

.search-medicine {
    border-radius: 50px;
    border: 3px solid #fff !important;
    color: var(--text-light) !important;
    padding-right: 30px !important;
    padding-left: 30px !important;
}


.card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 50px;
  padding-bottom: 20px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
}


.card {
  border: 1px solid #757575;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  box-shadow: 2px 2px 10px #999;
}

.card-header {
    padding: 0;
}


.card-header img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  padding: 0;
}


.card-body {
  padding: 15px;
}


.card-title {
  font-size: 20px;
}


.card-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}


.category {
  color: var(--primary-blue);
  border-radius: 50px;
  font-size: 14px;
}

.price {
    font-size: 16px;
    border-radius: 20px;
}

/* Button */
.add-to-cart-btn {
  width: 100%;
  padding: 4px;
  border-radius: 5px;
  border: 1px solid #fff;
  background: #212529;
  color: #fff;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: 0.3s;
}

.add-to-cart-btn:hover {
    background-color: #006eb9;
    color: #fff;
}

.add-to-cart-btn {
  margin-top: 5px;
}

.pagination-container {
    margin: 20px 0 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.page-btn {
    padding: 5px 10px;
    background-color: #f8f9fa;
    border: 1px solid #212529;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    text-decoration: none;
    color: #212529;
    font-size: 18px;
}

.page-btn:hover {
    background-color: #212529;
    color: #fff;
}

.arrow {
    font-weight: bold;
    font-size: 18px;
}

.footer {
    background-color: #212529;
    color: #ffffff;
    text-align: center;
    padding: 15px 0;
    margin-top: 50px;
}

.footer p {
    margin: 0;
    font-size: 14px;
}

.login-container {
    margin: 80px 0 80px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.login-container-left {
    width: 50%;
    padding: 50px;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-container-right {
    overflow: hidden;
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    object-fit: cover;
    border-radius: 5px;
}

.login-container-right > img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.login-container-left form {
    width: 90%;
}

.form-control {
    padding-left: 10px;
    border-radius: 5px;
}

.login-btn {
    width: 100%;
    border-radius: 5px;
    border: 2px solid #212121;
    background-color: #212121;
    color: white;
    margin-top: 20px;
}

.login-btn:hover {
    background-color: #fff;
    color: #212121;
    border: 2px solid #212121;
}

.login-tabs-container {
    height: 455px;
    padding-top: 25px;
    
}

.login-tabs-buttons {
    margin-bottom: 20px;
}

.login-tabs-buttons > button.tab {
    border: 2px solid #212121;
    padding: 5px 20px;
    font-size: 18px;
    border-radius: 5px;
    color: #212121;
}

.login-tabs-buttons > .tab.active {
    background-color: #212121;
    color: #fff;
}

.login-panel {
    display: none;
}

.login-footer {
    margin-top: 15px;
}

.sidebar {
    background-color: var(--bg-dark);
    width: 20%;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
}

.sidebar__title {
    font-size: 28px;
    margin-bottom: 40px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-top: 30px;
    margin-left: 30px;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
}

.sidebar__title-main {
    color: var(--primary-green);
}

.sidebar__title-sub {
    color: var(--primary-blue);
}

.sidebar__list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.sidebar__link {
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    display: inline-block;
    border-bottom: 1px solid #616161;
    width: 100%;
    padding-left: 30px;
}

.sidebar__link:hover {
    background-color: #3d454d;
}

.sidebar__link-icon {
    display: inline-block;
    color: var(--primary-green);
}

.sidebar__link-text {
    display: inline-block;
    margin-left: 5px;
}

.sidebar__footer {
    width: 100%;
}

.logout-admin__link {
    margin-top: auto;
    width: 100%;
    display: inline-block;
    margin-bottom: 30px;
    padding: 8px 0;
    padding-left: 30px;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 1px solid #616161;
    border-top: 1px solid #616161;
}

.logout-admin__link:hover {
    background-color: #4d3d3d;
}

.logout-admin__link-icon {
    color: #ff3131;
    font-size: 20px;
    transform: rotate(180deg);
}

.logout-admin__link-text {
    margin-left: 5px;
    color: #ff3131;
}

.dashboard-admin {
    width: 80%;
    margin-left: auto;
    height: 100vh;
}

.form-group {
    display: flex;
    justify-content: space-between;
}

.dashboard {
    width: 80%;
    margin-left: auto;
}

.dashboard__header {
    background-color: #006eb9;
    margin-bottom: 30px;
}

.dashboard__nav {
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard__nav-title > h1 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
    margin-left: 30px;
    font-size: 28px;
    font-weight: bolder;
    color: #fff;
}

.dashboard__profile {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 0;
    text-decoration: none;
    color: black;
}

.dashboard__profile-image-wrapper {
    border-radius: 50px;
    margin-right: 10px;
    overflow: hidden;
}

.dashboard__profile-image {
    object-fit: cover;
    width: 40px;
    height: 40px;
    object-fit: cover;
    display: inline-block;
    filter: invert(1);
}

.dashboard__profile-text {
    font-size: 18px;
    color: #fff;
}

.dashboard__stats-container {
    padding: 20px 30px;
}

.dashboard__stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.dashboard__stat-card {
    flex: 1;
    background-color: #006eb9;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 6px;
    color: white;
}

.dashboard__stat-icon {
    font-size: 28px;
    margin-right: 15px;
}

.dashboard__stat-content {
    display: flex;
    flex-direction: column;
}

.dashboard__stat-number {
    margin: 0;
    font-size: 26px;
    font-weight: bold;
}

.dashboard__stat-label {
    margin: 0;
    font-size: 14px;
}


.dashboard__table-container {
    margin: 20px 30px;
    background-color: #fff;
    border-radius: 6px;
}


.dashboard__table {
    width: 100%;
    border-collapse: collapse;
}


.dashboard__table thead {
    background-color: #f5f5f5;
}

.dashboard__table th {
    text-align: left;
    padding: 12px;
    font-size: 14px;
    background: #006eb9;
    color: #fff;
}


.dashboard__table td {
    padding: 12px;
    border-top: 1px solid #ddd;
    font-size: 14px;
}

.dashboard__table tbody {
    border-bottom: 1px solid #ddd;
}


.dashboard__table tbody tr:hover {
    background-color: #f9f9f9;
}


.status {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: #fff;
}

.status--pending {
    background-color: #006eb9;
}

.status--completed {
    background-color: #9cc500;
}

.dashboard__analytics {
    display: flex;
    gap: 20px;
    padding: 20px 30px;
}

.dashboard__map-container,
.dashboard__chart-container {
    flex: 1;
    background-color: #fff;
    padding: 0;
    padding-right: 20px;
    padding-bottom: 20px;
    border-radius: 6px;
    height: 345px;
}

.dashboard__section-title {
    margin-bottom: 15px;
    font-size: 18px;
}

#map {
    width: 100%;
    height: 300px;
    border-radius: 6px;
    border: 1px solid #006eb9;
}

#ordersChart {
    width: 100%;
    height: 300px;
}

.dashboard__section {
    padding: 20px 30px;
    border-radius: 6px;
}

.dashboard__section-top {
    margin-bottom: 40px;
}

.dashboard__section-main {
    margin-bottom: 20px;
}

.dashboard__section-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.dashboard__section-search {
    width: 80%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.dashboard__section-add {
    background-color: #006eb9;
    color: #fff;
    width: 20%;
    padding: 10px 15px;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    margin-left: 10px;
}

.medicine__add-btn:hover {
    opacity: 0.9;
}

.supplier_update_table th {
    width: 15%;
    text-align: left !important;
    padding-left: 10px;
}

.supplier_update_table td {
    width: 85%;    
    text-align: left !important;
    padding-left: 10px;
}

.dashboard__section-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 5px;
}

.dashboard__section-table thead {
    background-color: #f5f5f5;
}

.dashboard__section-table th {
    text-align: left;
    padding: 12px;
    border: 1px solid #999;
    font-size: 14px;
    text-align: center;
}


.dashboard__section-table td {
    padding: 12px;
    font-size: 14px;
    border: 1px solid #999;
    text-align: center;
}


.dashboard__section-table tbody tr:nth-child(odd) {
    background-color: #dfdfdf;
}

.dashboard__section-table tbody tr:nth-child(even) {
    background-color: #fff;
}

.dashboard__section-table tbody tr:hover {
    background-color: #eaeaea;
}

.dashboard__section-cell-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: #006eb9;
    color: #fff;
    padding: 5px 8px;
    font-size: 12px;
    text-decoration: none;
    border-radius: 4px;
}

.action-btn:hover {
    opacity: 0.85;
}

.dashboard__section-pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.pagination__numbers {
    display: flex;
    gap: 10px;
    margin: 0 10px;
}


.pagination__btn {
    background-color: #fff;
    border: 1px solid #212529;
    color: #212529;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.pagination__btn:hover {
    background-color: #212529;
    color: #fff;
}

/***  March 30, 2026 *********/

.dashboard__secion-form-container {
    margin-top: 40px;
}

.dashboard__secion-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.dashboard__secion-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dashboard__secion-form-label {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #006eb9;
}

.dashboard__secion-form-input,
.dashboard__secion-form-select {
    padding: 10px;
    border: 1px solid #99a2aa;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.dashboard__secion-form-file {
    border: 1px solid #99a2aa;
}

.dashboard__secion-form-input:focus,
.dashboard__secion-form-select:focus,
.dashboard__secion-form-file:focus {
    border-color: #006eb9;
}

.dashboard__secion-form-file {
    padding: 6px;
    background-color: #fff;
}

.dashboard__secion-form-actions {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}


.dashboard__secion-form-button {
    padding: 10px 20px;
    border: 1px solid #006eb9;
    background-color: #006eb9;
    color: #ffffff;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 5px;
}

.dashboard__secion-actions {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
}

.dashboard__secion-action-button {
    padding: 10px 20px;
    border: 1px solid #006eb9;
    background-color: #006eb9;
    color: #ffffff;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.dashboard__secion-action-button:hover {
    background-color: #00568f;
    color: #fff;
}


.dashboard__secion-form-button:hover {
    background-color: #00568f;
    color: #fff;
}


.medicine-form__button:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .medicine-form__row {
        flex-direction: column;
    }
}


.user__section-view-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}


.user__section-view-table tr {
    border-bottom: 1px solid #dee2e6;
}


.user__section-view-table th {
    text-align: left;
    padding: 12px;
    width: 20%;
    background-color: #f8f9fa;
    color: #212529;
    border: 1px solid #999;
    font-weight: 600;
}


.user__section-view-table td {
    padding: 12px;
    color: #495057;
    border: 1px solid #999;
    width: 80%;
}


.user__section-view-table tr:hover {
    background-color: #f1f3f5;
}


@media (max-width: 768px) {
    .user__section-view-table th,
    .user__section-view-table td {
        display: block;
        border: 1px solid #999;
        width: 100%;
    }

    .user__section-view-table tr {
        margin-bottom: 10px;
        display: block;
        border: 1px solid #dee2e6;
    }
}


.order-status {
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 13px;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}


.order-status:hover {
    border-color: #006eb9;
}

.order-status:focus {
    border-color: #006eb9;
    box-shadow: 0 0 4px #006eb9;
}


.order-status option[value="Pending"] {
    color: #64078f;
}

.order-status option[value="Processing"] {
    color: #07428f;
}

.order-status option[value="Delivered"] {
    color: #128f07;
}

.order-status option[value="Cancelled"] {
    color: #8f1507;
}

th.customer-orders-history-header {
    background-color: #006eb9;
    color: white;
    text-align: center;
    font-size: 18px;
}

.customer-orders-history-table {
    width: 100%;
    border-collapse: collapse;
    border: none;
}

.customer-orders-history-table tr {
    border: none;
}

.customer-orders-history__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.header {
    background-color: #212529;
    position: relative;
}

.banner {
    background-color: black; 
    width: 100%; 
    height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #000;
}

.banner-left {
    width: 60%;
    display: flex;
    align-items: center;
    padding-left: 50px;
}

.banner-left__content {
    width: 100%;
}

.banner-left__browse-link {
    padding: 8px 28px;
    background-color: #006eb9;
    color: #fff;
    border: none;
    font-size: 16px;
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.5s;
}

.banner-left__browse-link:hover {
    background-color: white;
    color: #212121;
}

.banner-right {
    width: 50%;
    transform: rotate(8deg) translate(50px, 14px);
    height: 100vh;
    overflow: hidden;
}

.banner-right > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: -20px -110px;
    transform: rotate(-8deg) scale(1.1);
}

.header-top-container {
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    width: 1200px;
}

.header-top__logo-container {
    width: 130px;
}

.header-top__logo-image {
    width: 100%;
}

.banner-left__search-container {
    width: 100%;
    display: flex;
}

.banner-left__search-input-bar {
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.banner-left__search-input-bar > label {
    width: 8%;
    padding-left: 14px;
}

.banner-left__search-input-bar > label > i {
    color: #006eb9;
    font-size: 18px;
    display: inline-block;
}

.banner-left__search-input-bar > input {
    width: 91%;
    border: none;
    padding: 14px;
}

.banner-left__search-input-bar > input:focus {
    border: none;
    outline: none;
}


.cart-container {
    display: inline-block;
}

.cart-link {
    min-width: 40px;
    min-height: 40px;
    background: #fff;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.cart-link:hover {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.cart-link span {
    position: absolute;
    top: -12px;
    right: -10px;
    min-width: 25px;
    min-height: 24px;
    background-color: #ff2d55;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-link i {
    font-size: 20px;
    color: #000;
}

.navbar {
    background-color: #006eb9;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 0;
}

.navbar__navigation-menu {
    padding: 0;
    width: 1200px;
    display: flex;
    justify-content: space-between;
}


.navbar__navigation-menu > ul {
    display: flex;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.navbar__navigation-menu li {
    color: #fff;
}

.navbar__navigation-menu a {
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    display: inline-block;
}

.navbar__navigation-menu a:hover {
    background-color: #003f69;
}

.navbar-dropdown {
    display: relative;
}

.navbar-dropdown-btn {
    background-color: transparent;
    color: white;
    padding: 10px;
    margin: 0;
    border: none;
}

.navbar-dropdown-menu-container {
    display: none;
    position: absolute;
    background-color: var(--primary-blue);
    border-radius: 10px;
    overflow: hidden;
    min-width: 250px;
    box-shadow: 2px 2px 20px #23282c;
}

.navbar-user-profile-drowdown {
    left: 950px;
}

.navbar-dropdown-menu {
    color: #fff;
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.navbar-dropdown-link {
    color: #fff;
    display: inline-block;
    padding: 10px 30px;
    width: 100%;
    text-align: left;
    background-color: var(--primary-blue);
}

.navbar-dropdown:hover .navbar-dropdown-menu-container {
    display: block;
}

.category-dropdown-menu-container {
    min-width: 600px;
}

.category-dropdown-menu {
    display: grid;
    grid-template-columns: repeat( 4, 1fr );
}

.category-dropdown-link {
    text-align: center;
}

.product {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
}

.product__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 40px;
}

.product__image-container {
    flex: 1;
    height: 70vh;
}

.product__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid #212529;
}

.product__subtitle {
    width: 100%;
}

.product__details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.product__category {
    font-size: 22px;
}

.product__stock {
    font-size: 22px;
    color: #c50000;
}

.product__title {
    font-size: 42px;
    margin-bottom: 10px;
}

.product__details-body {
    margin-bottom: 60px;
}

.product__details-header-bottom {
    margin-bottom: 20px;
}

.product__details-header-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.medicine-safety {
    margin-bottom: 50px;
}

.medicine-safety ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product__price {
    color: #212529;
    font-size: 22px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.product__quantity {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    margin-left: auto;
    justify-content: flex-start;
    width: 100%;
}

.product__btn {
    background-color: #212529;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 26px;
    width: 40px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product__input {
    text-align: center;
    padding: 5px;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 5px;
    font-size: 26px;
    width: 20%;
    height: 42px;
    border: 1px solid #666;
    margin-top: 0;
}

.product__cart-btn {
    padding: 4px;
    background-color: #212529;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-bottom: 15px;
    border-radius: 5px;
    width: 100%;
}

.product__cart-btn--active {
    background-color: #dc3545;
}

.shopping-cart {
    min-height: 90vh;
}

.shopping-cart__items-list {
    width: 70%;
}

.shopping-cart__body-container {
    display: flex;
    gap: 40px;
}

.shopping-cart__heading-container {
    margin: 60px 0;
}

.shopping-cart__heading {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bolder;
}

.shopping-cart__product-col {
    width: 80%;
}

.shopping-cart__price-col {
    width: 20%;
}

.shopping-cart__list-table {
    vertical-align: top;
    width: 100%;
}

.shopping-cart__list-table tr {
    border-bottom: 1px solid #999;
}


.shopping-cart__list-table td {
    padding: 10px 0;
}

.shopping-cart__list-table th {
    padding-bottom: 10px;
}

.shopping-cart__product-details-container {
    display: flex;
    align-items: center;
}

.shopping-cart__product-image-container {
    width: 120px;
    overflow: hidden;
    margin-right: 20px;
    border: 1px solid #aaa;
}

.shopping-cart__product-image {
    width: 100%;
    object-fit: cover;
}

.shopping-cart__product-details-title {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: bolder;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.shopping-cart__product-details-subtitle {
    font-size: 14px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-bottom: 5px;
}

.shopping-cart__product-price-container h1 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px;
}

.shopping-cart__delete-btn {
    padding: 2px 20px !important;
    border-radius: 5px;
    font-size: 12px;
    margin-bottom: auto !important;
}

.shopping-cart__order-container {
    width: 30%;
    height: 450px;
    background-color: #ddd;
    border-radius: 5px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shopping-cart__order-title {
    margin-bottom: 30px;
}

.shopping-cart__order-details-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    border-bottom: 1px solid #aaa;
    padding: 4px 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.shopping-cart__order-details-row p {
    padding: 0;
    margin-bottom: 5px;
}

.profile-main-container {
    min-height: 90vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-inner-container {
    width: 90%;
    display: flex;
    gap: 20px;
}

.profile-sidebar {
    width: 30%;
    background: #212529;
    border-radius: 5px;
    padding: 40px 20px;
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #fff;
}

.profile-tab {
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.profile-tab:hover {
    background: rgba(255, 255, 255, 0.329);
    color: #fff;
}

.profile-tab.active {
    background: #006eb9;
    color: #fff;
}

.profile-content {
    width: 80%;
    padding: 0 80px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.form-group--inline {
    display: flex;
    gap: 20px;
}

.form-group__field {
    width: 50%;
}

#securityPanel {
    width: 100%;
}

.alert-box {
    width: 90%;
    padding: 14px;
    background-color: #ffcccc;
    color: #750000;
    border: 1px solid #750000;
    border-radius: 5px;
    box-shadow: 3px 3px 10px #750000;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 16px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.alert-box-normal {
    padding: 20px;
    background-color: #fffeb7;
    color: #756900;
    border: 1px solid #756900;
    border-radius: 5px;
    box-shadow: 3px 3px 10px #756900;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 16px;
    margin-top: 40px;   
}

.order-confirmation {
    min-height: 90vh;
}

.order-confirmation__items-list {
    width: 70%;
}

.order-confirmation__body-container {
    display: flex;
    gap: 40px;
}

.order-confirmation__heading-container {
    margin: 60px 0;
}

.order-confirmation__heading {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bolder;
}

.order-confirmation__info {
    width: 70%;
}

.payment-box__info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    background-color: #ccc;
    margin: 20px 0 20px;
    border-radius: 5px;
    padding: 30px;
    font-size: 18px;
}

.payment-box__input-container {
    width: 48%;
}

.payment-box__input-container label {
    margin-bottom: 10px;
}

.payment-box__input-container input {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    border-radius: 5px;
}

.payment-box__submit-btn {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    flex: 1 0 100%;
}

.payment-box__submit-btn button {
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #000;
    margin-left: auto;
    display: inline-block;
    color: white;   
}

.payment-box__submit-btn button:hover {
    background-color: #202020;
}

.payment-box__info {
    display: none;
}

.shipping-form__row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.shipping-form__field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shipping-form__input {
    padding: 8px;
}

.shipping-form__field label {
    margin-bottom: 10px;
}

.shipping-form__field input {
    border-radius: 5px;
    border: 1px solid #666;
}

.section-row__col-2 {
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
}

.section__col {
    background-color: #212529;
    padding: 20px;
    width: 50%;
}

.section__col-1 {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.section__col-2 {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.payment-status__form h2, 
.order-status__form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.payment-status__form select, 
.order-status__form select {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
}

.payment-status__form button[type="submit"],
.order-status__form button[type="submit"] {
    width: 30%;
    margin-left: auto;
    display: block;
    margin-top: 10px;
    padding: 8px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
}

.payment-status__form button[type="submit"]:hover
.order-status__form button[type="submit"]:hover {
    background-color: #ddd;
}

.highlighter {
    background-color: red;
    color: white;
    font-size: 18px;
    font-weight: light;
    padding: 5px 28px;
    border-radius: 10px;
}

.bg-success {
    background-color: #128f07 !important;
}

.bg-warning{
    color: #000 !important;
}

.medicines-list-search__container-background {
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 3000;
    display: none;
}

.medicines-list-search__container-close {
    width: 40px;
    height: 40px;
    margin: 20px;
    margin-left: auto;
    background-color: red;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 99999;
}

.medicines-list-search__container-close > i {
    color: #ffffff;
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 20px;
}

.medicines-list-search__container {
    width: 60%;
    border-radius: 5px;
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid black;
    max-height: 80vh;
    overflow: hidden;
    padding: 20px;
    overflow-y: auto !important;
    scrollbar-width: thin;
   scrollbar-color: #888 #f1f1f1; /* thumb color | track color */
}

.medicines-list-search__input-container {
    width: 100%;
    background-color: white;
    overflow: hidden;
    border: 2px solid #000;
    padding: 10px;
    border-radius: 5px;
    position: sticky;
    top: 0;
}

.medicines-list-search__input-container > input {
    width: 94%;
    border: none;
}

.medicines-list-search__input-container > input:focus {
    outline: none;
    border: none;
}

.medicines-list-display__container ul {
    text-decoration: none;
    margin: 0;
    padding: 0;
    list-style: none;
}

.medicines-list-display__container ul li {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 10px;
    border-bottom: 1px solid #888;
    padding-bottom: 10px;
}

.medicine-list-item-link__container {
    display: flex;
    text-decoration: none;
    color: #000;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 1px solid black;
    border-radius: 5px;
}

.medicine-list-item-info__container {
    display: flex;
    align-items: center;
}

.medicine-list-item__image-container {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 5px;
}

.medicine-list-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.medicine-list-item__info {
    padding-left: 10px;
}

.medicine-list-item__title {
    font-size: 20px;
    font-weight: bold;
}

.medicine-list-item__category {
    font-size: 14px;
}

.medicine-list-item-price__container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.medicine-list-item__price {
    font-size: 14px;
    color: #003f69;
    font-weight: bolder;
}

.medicine-list-item-cart-add__container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.medicine-list-item-cart-add__link {
    background-color: #212529;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.card-subtitle {
    display: flex;
    justify-content: space-between;
}

.stock {
    color: #c50000;
    font-weight: bold;
}

.disabled {
    background-color: #c50000;
    color: white;
    cursor: not-allowed !important;
}

.delete-confirmation__container-background {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.delete-confirmation__container {
    background-color: #fff;
    width: 30%;
    min-height: 400px;
    display: flex;
    border-radius: 5px;
    flex-direction: column;
    justify-content: center;
}

.delete-confirmation__header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.delete-confirmation__text h3 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bolder;
    color: #c50000;
}

.delete-confirmation__icon-container {
    background-color: #ffd9d9;
    width: 80px;
    height: 80px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.delete-confirmation__icon-container i {
    color: #c50000;
    font-size: 60px;
}

.delete-confirmation__body {
    width: 100%;
    margin-bottom: 20px;
    padding: 0 20px;
}

.delete-confirmation__footer {
    padding: 0 40px;
}

.delete-confirmation__text {
    text-align: center;
}

.delete-confirmation__input {
    display: flex;
    flex-direction: column;
}

.delete-confirmation__input input {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #c50000;
    padding-left: 10px;
}

.delete-confirmation__btn-container {
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.delete-confirmation__btn-container button,
.delete-confirmation__btn-container a {
    padding: 5px 20px;
    border: 1px solid #c50000;
    border-radius: 5px;
    width: 50%;
    color: #c50000;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    transition: 0.5s;
}


.delete-confirmation__btn-container button:hover {
    background-color: #c50000;
    color: #fff;
}

.delete-confirmation__btn-cancel {
    margin-right: 5px;
}

.error-message {
    font-size: 14px;
    margin-top: 4px;
    display: flex;
    flex-wrap: wrap;
}