/* styles.css */
body {
    font: 14px sans-serif;
}

.wrapper {
    padding: 20px;
}
/* Hide elements on screens smaller than 600px was 768px */
@media (min-width: 768px) {
    .wrapper {
        max-width: 360px;
        margin: auto;
    }
}

/* Hide elements on screens smaller than 600px was 768px */
@media (max-width: 768px) {
    .hide-on-mobile {
        display: none;
    }
}

.stamp-image {
    width: 50px;
    margin-right: 10px;
}

div.centered-div {
    width: 90%;
    margin: 0 auto;
}

.pagination-link {
    border: 1px solid #ddd;
    padding: 5px 10px;
    margin: 0 5px;
    display: inline-block;
    color: #337ab7;
}

/* Class for active pagination links */
.pagination-link-active {
    background-color: #337ab7;
    color: #fff;
}

.custom-navbar {
    padding-left: 2%;
    padding-right: 2%;
}

.navbar-toggler {
    margin-right: 2%;
}

.custom-small-button {
    min-width: 20px; /* Adjusted from 10px to provide enough clickable area */
    height: 20px; /* Adjusted for visual proportionality */
    padding: 0 !important;
    font-size: 0.65rem; /* Further reduced for smaller text, if any text is used */
}

.custom-small-button i {
    margin: 0 2px; /* Reduced margin for tighter icon spacing */
    font-size: 0.75rem; /* Smaller icons */
}


.bg-black {
    background-color: black;
}

.info-icon {
    color: blue;
    margin-left: 8px;
}
/*  form check styles used in the canadian province check page*/
.form-check-label {
    display: inline-block;
    margin-left: 10px;
}
.form-check {
    display: flex;
    align-items: center;
    justify-content: start;
}
.btn:disabled {
    background-color: grey;
    border-color: grey;
}

/* from subscription page */
.btn-icon {
    width: 2em; /* Set a consistent width */
    height: auto;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Make all links dark red and not underlined */
a {
    color: darkred;
    text-decoration: none;
}

a:hover, a:focus {
    text-decoration: underline;
}

.custom-logincontainer {
    max-width: 900px; /* Adjust this value as needed */
}

.cursor-pointer {
    cursor: pointer;
}
