:root {
    --blue: #003049;
    --blueHover: #01517d;

    --green: #97cc04;
    --greenHover: #81b000;

    --red: #d62828;
    --redHover: #a41f1f;

    --lightGray: #F5F5F5;
    --lightGrayHover: #c5c5c5;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap');

body {
    font-family: 'Inter', sans-serif!important;
    background-color: var(--lightGray);
    color: var(--blue);
    margin: 0;
    padding: 0;
}

input:focus {
    border-color: #97cc04 !important; /* Change border color to red */
    border-width: 1px !important; /* Change border width to 2px */
    box-shadow: 0 0 3px 2px #97cc0446 !important; /* Add a shadow to the input */
}

select:focus {
    border-color: #97cc04 !important; /* Change border color to red */
    border-width: 1px !important; /* Change border width to 2px */
    box-shadow: 0 0 3px 2px #97cc0446 !important; /* Add a shadow to the input */
}

bg-green {
    background-color: var(--green);
}

p {
    font-size: 14px;
    color: #a8a8a8;
}

h1 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.onboarding {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background-color: var(--blue)!important;
    border: none;
    font-weight: 600;
}

.btn-sm {
    font-size: 12px;
    font-weight: 400;
}

.btn-primary:hover {
    background-color: var(--blueHover);
    border: none;
    font-weight: 600;
}

.btn-success {
    background-color: var(--green);
    border: none;
    font-weight: 600;
    color: var(--blue);
}

.btn-success:hover {
    background-color: var(--greenHover);
    border: none;
    font-weight: 600;
    color: var(--blue);
}

.profileicon {
    color: white;
    background-color: var(--blue);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.business-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    margin-top: 10px;
}

.nav-link {
    color: var(--blue);
    font-weight: 600;
    font-size: 15px;
    opacity: 50%;
}

.nav-link.active {
    color: var(--blue);
    font-weight: 600;
    opacity: 100%;
}

.nav-link:hover {
    color: var(--blue);
    font-weight: 600;
    opacity: 100%;
}

.nav-link i {
    color: white;
}

.nav-icon {
    background-color: var(--green);
    padding: 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 8px;
}

.nav-icon i {
    color: white;
    font-size: 16px;
}

.content-fade {
    opacity: 0;
    transform: translateY(5px);
    animation: fadeInContent 0.3s ease-out forwards;
    animation-delay: 0.1s; /* Small delay for better UX */
}

@keyframes fadeInContent {
    from { 
        opacity: 0;
        transform: translateY(5px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-link.bar.active {
    color: var(--blue);
    border:none;
    font-weight: 600;
    background-color: #ffffff00;
}

.nav-link.bar {
    font-weight: 400;
}

.nav-link.bar:hover{
    border: none;
}

.nav-tabs .nav-link {
    border: none!important;
}

::placeholder {
    color: #c5c8d5!important;
}

.selected {
    border: 2px solid var(--green)!important;
    box-shadow: 0 2px 2px 1px #80808039;
}

.package-name {
    font-weight: 600;
    font-size: 1.2rem;
    color: #003049;
}

.package-fees {
    font-weight: 400;
    font-size: .8em;
    color: #a5a5a5;
}

.term {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: normal;
}

.package-features {
    list-style: none;
    padding-left: 0;
}

.package-features li {
    position: relative;
    padding-left: 1em;
    margin-bottom: 0.3em; /* Control spacing between items */
    font-size: 12px;
    color: rgb(164, 164, 164);
}

.package-features li::before {
    content: "•";
    position: absolute;
    left: 0;
}

.transactions {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.transactions-cost {
    font-size: 0.9rem;
    color: #6c757d;
    margin:0
}

.profile p {
    margin:5px;
}

.profile-titles p {
    font-weight: 600;
}

.footer {
    font-size: 10px;
    color: gray!important;
}

.footer a {
    color: gray!important;
    text-decoration: none;
}

.preview-title {
    font-family: 'Outfit', 'Sans-serif';
    font-size: 23px;;
}

.form-check-input {
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.form-check-input:checked {
    background-color: var(--green);
    border-color: var(--greenHover);
}

.counter {
    margin-top: 15px!important;
    font-size: 12px;
    color: var(--greenHover);
}

small.custom {
    font-size: 12px;
    color: #989898!important;
    line-height: 0!important;
}

.onboarding p {
    color:#5f5f5f
}

/* Add this to your style.css or in a <style> tag in the head */
.transactions-container {
    display: flex;
    justify-content: left;
    gap: 15px; /* This adds space between the items */
}

.transaction-option {
    flex: 0 0 auto;
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.transaction-option:hover {
    border-color: var(--greenHover) !important;
}

.transaction-option.selected {
    border: 2px solid var(--green) !important;
    box-shadow: 0 2px 2px 1px #80808039;
}

.total {
    font-weight: 600;
    font-size: 20px;
}

.waiting {
    font-size: 2em;
    font-weight: 600;
    line-height: 1;
    ;
}

.forgot {
    text-decoration: none!important;
    color: var(--blue)!important;
    font-size: 14px;
    font-weight: 600;
}

.google-button:hover div {
    background-color: #cecece!important;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.alert-danger {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: var(--red);
    color: white;
}

.alert-warning {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: rgb(227, 187, 40);
    color: var(--blue);
}

/* Add these styles for subscription plan selection */

.subscription-plan {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border: 1px solid #dee2e6;
}

.subscription-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.subscription-plan.selected {
    border: 2px solid #003049;
    box-shadow: 0 5px 15px rgba(0, 48, 73, 0.1);
    position: relative;
}

.subscription-plan.selected::after {
    content: "✓";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    background: #003049;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

#welcome-card {
    background-image: linear-gradient(var(--blueHover), var(--blue));
    font-family: 'Outfit', sans-serif!important;

}

#welcome-card a {
    color: var(--green);
    text-decoration: none;
}

#welcome-card p {
    font-size: 1.2em;
    line-height: 1em!important;
    margin-bottom: 0!important;
}

#welcome-card ul {
    padding-left: 0!important;
    list-style-type: none;
    font-size: 16px;
}
#welcome-card i {
    color: var(--green);
    margin-right: 5px;
}

#welcome-card li {
    margin-bottom: .5em;
}

.copy-link-btn {
    color: white;
    background: transparent;
    border: none;
    padding: 0 0.3rem;
    cursor: pointer;
    transition: all 0.2s;
}

.copy-link-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

#business-link {
    font-weight: 500;
}

#requests th {
    color: #828282!important;
}

#requests td {
    color: #616161!important;
}

#requests a {
    font-size: 14px;
    color: var(--blue)!important;
    text-decoration: none;
}

.copy-btn {
    color: var(--blue);
    background: transparent;
    border: none;
    padding: 0 0.3rem;
    cursor: pointer;
    transition: all 0.2s;
}

.dataTables_info {
    font-size: 12px !important;
    color: var(--lightGrayHover) !important;
    margin-top: 0.5rem !important;
}

.dataTables_paginate .pagination .page-item.active .page-link,
.dataTables_paginate .paginate_button.current {
    background-color: var(--green) !important;
    color: #fff !important;
    border-color: var(--green) !important;
}
