/* Custom styles goes here */
/* General button styles */
.btn-rounded-pill {
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    /* Hover effect for all buttons */
    .btn-rounded-pill:hover {
        transform: scale(1.05);
        opacity: 0.9;
    }

/* Button Add */
.btn-add {
    background-color: #00bad1;
}

    .btn-add:hover {
        background-color: #00bad1;
    }

/* Button Submit, Save */
.btn-submit {
    background-color: #173857;
}

    .btn-submit:hover {
        background-color: #173857;
    }

/* Button Next */
.btn-next {
    background-color: #3F88C5;
}

    .btn-next:hover {
        background-color: #3F88C5;
    }

/* Button Previous */
.btn-previous {
    background-color: #F49D37;
}

    .btn-previous:hover {
        background-color: #F49D37;
    }

/* Button Back, Reset */
.btn-back-reset {
    background-color: #ad343e;
}

    .btn-back-reset:hover {
        background-color: #ad343e;
    }

/* Alternate Reset Button */
.btn-reset {
    background-color: #fd7e14;
}

    .btn-reset:hover {
        background-color: #e8590c;
    }
/* General Styles */
.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    /* Add hover effect */
    .action-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }

    /* Action-Specific Colors */
    .action-btn.add {
        background-color: #28a745; /* Green */
    }

    .action-btn.active {
        background-color: #007bff; /* Blue */
    }

    .action-btn.inactive {
        background-color: #dc3545; /* Red */
    }

    .action-btn.edit {
        background-color: #ffc107; /* Yellow */
    }

    .action-btn.amend {
        background-color: #17a2b8; /* Teal */
    }

    .action-btn.download {
        background-color: #6c757d; /* Gray */
    }

    .action-btn.upload {
        background-color: #ff5722; /* Orange */
    }

/* Feather Icons Styling */
.feather-21 {
    width: 21px;
    height: 21px;
    fill: #173857;
    stroke: white;
}

.feather-20 {
    width: 20px;
    height: 20px;
}

.feather-211 {
    width: 16px;
    height: 17px;
    margin-top: -0.2vw;
}

.feather-18 {
    width: 18px;
    height: 18px;
}

.feather-60 {
    width: 60px;
    height: 60px;
}

/* Reduced Sticky Container */
.sticky-container {
    position: fixed;
    top: 50px; /* Adjust for smaller header */
    bottom: 50px; /* Adjust for smaller footer */
    left: 0;
    right: 0;
    overflow-y: auto;
    background-color: #f8f9fa;
    padding: 5px; /* Smaller padding */
    z-index: 1000;
    font-size: 0.85rem; /* Smaller font size */
}

/* Smaller Header and Footer */
.header,
.footer {
    position: fixed;
    left: 0;
    right: 0;
    height: 50px; /* Smaller height */
    background-color: #007bff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    font-size: 0.85rem; /* Smaller font size */
}

/* Smaller Card Styling */
.small-card {
    font-size: 0.85rem; /* Reduced font size for card content */
}

/* Reduced Buttons */
button.btn {
    /*padding: 3px 8px; *//* Smaller buttons */
    font-size: 0.8rem; /* Smaller button font */
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    width: 750%;
    height: 750px;
}


