:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #337ab7; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #337ab7; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  }

.login-page,
.register-page {
    min-height: 100svh;
    height: auto;
    background-image: url('../img/trophy-login.png');
/*  background-image:*/
/*      linear-gradient(to bottom, rgba(245, 246, 252, 0.52), rgba(3, 71, 110, 0.73)),*/
/*      url('../img/login.jpg');*/
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-logo a, .register-logo a {
    color: white;
}

.login-box, .register-box {
    width: 360px;
    margin: auto;
}

.pad-box{
    margin-left: 2rem;
    margin-right: 2rem;
}


.image-upload-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.image-upload-container .image-upload-box {
    position: relative;
    width: 150px;
    height: 150px;
    border: 2px dashed #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.image-upload-container .image-preview {
    position: relative;
    width: 150px;
    height: 150px;
}

.image-upload-container .image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-upload-container .image-preview .remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 0, 0, 0.6);
    border: none;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price{
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: bold;
}

.heading-color{
    color: var(--heading-color) !important;

}

.btn-main{
    color: var(--contrast-color) !important;
    background: var(--accent-color) !important;
}

.text-primary,
.accent-color{
    color: var(--accent-color) !important;
}

.form-control:focus {
    border-color: var(--accent-color) !important;
    box-shadow: none;
}

.fl-wrapper {
    z-index: 99999 !important;
}

.inputerror{
    color: red;
    padding-left: 20px;
}


/* Ensure text wrapping in the description column */
.text-wrap {
    white-space: normal; /* Allows line wrapping */
    word-wrap: break-word; /* Break long words if necessary */
}

/* Keep action buttons on one line */
.d-flex {
    display: flex;
}

.d-flex.justify-content-center {
    justify-content: center;
}

.d-flex.align-items-center {
    align-items: center;
}

td.text-center {
    vertical-align: middle;
}

.SumoSelect .select-all.partial>span i, .SumoSelect .select-all.selected>span i, .SumoSelect>.optWrapper.multiple>.options li.opt.selected span i {
    background-color: var(--accent-color) !important;
}

.SumoSelect {
    width: 100% !important;
}
