* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}

.highlight {
    background-color: yellow;
}
.offer-button {
    margin: 20px
}

#form_and_buttons {
    padding: 15px
}

.body {
    font-family: montserrat, sans-serif;
}

nav {
    background: #E9E4DA;
    height: 80px;
    width: 100%;
}

label.logo {
    color: white;
    font-size: 35px;
    line-height: 80px;
    padding: 0 100px;
    font-weight: bold;
}

nav ul {
    float: right;
    margin-right: 20px;
}

nav ul li {
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
}

nav ul li a {
    color: white;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;

}

a:hover {
    background-color: #1b9bff;
    transition: 0.5s;
}

input {
    size: 12px;

}


.form-group {
    display: inline-block;
    margin-right: 10px;
    padding: 0 3px;
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-right {
    text-align: right;
}

.table {
    border: 1px solid #4CAF50;
    padding: 20px
}

.td {
    text-align: center;
}

.form {
    padding: 20px
}

.form-container {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.completed-color {
    color: lightgreen;
}

.active-color {
    color: yellow;
}

.cancelled-color {
    color: black;
}

.pagination {
    display: flex;
    justify-content: center;
}

.step-links {
    display: flex;
    align-items: center;
}

.current-page {
    font-weight: bold;
    margin: 0 5px;
}

.container-fluid {
    padding-left: 60px;
    padding-right: 60px;
    margin-right: auto;
    margin-left: auto;

}

th[data-sort] i {
    opacity: 0;  /* padarykite ikonas šiek tiek permatomas */
    transition: opacity 0.3s ease;
    cursor: pointer;
}

th[data-sort].asc i, th[data-sort].desc i {
    opacity: 1;  /* padarykite ikonas pilnai matomas, kai stulpelis yra filtruojamas */
}

.unique-column {
    width: 95px;  /* Ar bet koks kitas norimas dydis */
}

/* Pavyzdys, kaip keisti ikonos dydį */
.btn i {
   font-size: 12px;  /* Ar bet koks kitas dydis */
}


.right-align {
    text-align: right;
}

.customLink {
    color: #86BA28; /* Spalva be brūkšnio; galite keisti į bet kokią kitą spalvą */
    text-decoration: none; /* Pašalina brūkšnį po tekstu */


}

.customLink:hover {
    text-decoration: underline; /* Jei norite, kad užvedus pelę ant nuorodos, brūkšnys vėl atsirastų */
}


.bold-label {
    font-weight: bold;
}

.active {
    font-weight: bold;
    background-color: #0d6efd/* arba kitas stilius pagal jūsų poreikius */
    /* kitas stilius... */
}

.page-number, .current-page {
    cursor: pointer;
    margin: 0 5px;
    padding: 5px 10px;
    border: 1px solid #007bff;
    border-radius: .25rem;
    color: #007bff;
}

.current-page {
    background-color: #007bff;
    color: white;
}

.success-message {
    background-color: lightgreen;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    /* kitos stiliaus savybės */
}

.error-message {
    background-color: lightcoral;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    /* kitos stiliaus savybės */
}





