
body{
    height: 100%;
    font-family: Poppins; 
    /* font-family: system-ui, -apple-system, sans-serif; */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    background-color: white;
    min-height: 100vh;
}

.header{
    width: auto;
    height: 89px;
    padding: 2px;
    display:flex;
    flex-wrap: wrap;
    flex-direction: column;
    flex-shrink: 0; 
    color:white;
    transform-origin: 0 0; 
    background: linear-gradient(269deg, #002B5B 0%, #274A65 100%);
}
.content {
    flex:1;
}

.footer {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    height: auto; 
    padding: 20px;
    display: flex;
    color:white;
    background: linear-gradient(149deg, #1A486A 0%, #001E34 100%)
}

.search-bar {
    /* width: 416px; */
    height: 34px;
    padding:2px;
    margin:2px;
    flex-grow:2;
    /* flex-shrink: 3; */
    border-radius: 10px;
    background: #FFF;
    color:black;
}

.login-btn {
    width: 74px;
    height: 34px;
    padding:2px;
    margin:2px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #B6E5D8;
    color: #032D5C;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.login-btn:hover {
    width: 74px;
    height: 34px;
    padding:2px;
    margin:2px;
    flex-shrink: 0;
    border-radius: 10px;
    background: white;
    color: #032D5C;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.signup-btn {
    background: linear-gradient(229deg, #002B5B 0%, #274A65 100%);
    color:white;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding:2px;
    margin:2px;
    width: 100px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid #FFF;
}
.login-btn-split{
    border-top-right-radius:0px;
    border-bottom-right-radius: 0px;
    width: 74px;
    height: 34px;
    padding:2px;
    margin:2px;
    flex-shrink: 0;
    background: #B6E5D8;
    color: #032D5C;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.signup-btn:hover {
    background: white;
    color:linear-gradient(229deg, #002B5B 0%, #274A65 100%);
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding:2px;
    margin:2px;
    width: 100px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid #FFF;
}

.subscription-btn {
    background-color:#B6E5D8; 
    border-radius: 10px;
    border: 1px solid #FFF;
    /* font-family: Roboto; */
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;width: 100px;
    height: 35px;
    padding:2px;
    margin:2px; 
}

.subscription-btn:hover {
    background-color:white;
    color:black; 
    border-radius: 10px;
    border: 1px solid #FFF;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;width: 100px;
    height: 35px;
    padding:2px;
    margin:2px; 
}

.offcanvas-body .nav-link {
    color:#274A65; 
}
a.nav-link {
    color:white;
}

a:link { text-decoration: none; }


a:visited { text-decoration: none; }


a:hover { text-decoration: underline;}


a:active { text-decoration: underline; }

a.disabled {
    pointer-events: none;
    cursor: default;
    background-color: initial; /* Retain the original background color */
  }

.blink-me {
    animation: blinker 3s linear infinite;
  }
  
  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }

.sidebar-nav {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    padding: 15px;
    background-color: #f8f9fa;
    height: 100vh;
}


.fxt-primary-btn {
    background: linear-gradient(229deg, #002B5B 1%, #274A65 1%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center; /* Vertically centers the text */
    justify-content: center; /* Horizontally centers the text */
    white-space: nowrap; /* Prevents text wrapping */
    }
    
.fxt-primary-btn:hover {
        background: linear-gradient(229deg, #002B5B 90%, #274A65 90%);
        color: white; /* Ensure text color remains white */
        text-decoration: underline; /* Add underline on hover */
    }


.form-label {
        text-align: left;
        display: block; /* Ensures label occupies its own line */
    }
   
.form-text{
        text-align: left;
}

.error {
    color: red;
    text-align: left;
    display: block; /* Ensures label occupies its own line */
}

/* .card:hover {
    background-color: #002B5B;
}

.card:hover .card-link {
    text-decoration: underline;
    
    color:green;
} */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    
}

.card {
    height: 14rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    padding: 2rem;
}

.card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.icon-wrapper {
    margin-bottom: 1rem;
}

.icon {
    width: 4rem;
    height: 4rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.card-description {
    font-size: 0.875rem;
    color: #4b5563;
}

/* Card specific styles */
.card-receive { background-color: #dcfce7; }
.card-receive .icon { color: #16a34a; }

.card-send { background-color: #dbeafe; }
.card-send .icon { color: #2563eb; }

.card-revoke { background-color: #fee2e2; }
.card-revoke .icon { color: #dc2626; }

.card-history { background-color: #f3e8ff; }
.card-history .icon { color: #7c3aed; }

/* Hover effects */
.card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    filter: brightness(1.05);
    border-color: #e5e7eb;
}

.dropdown-item:hover {
    background-color:#B6E5D8;
}

.dropdown-item {
    color:#274A65;
}
p[readonly],
select[readonly],
input[readonly],
textarea[readonly] {
  /* your styles here */
  background-color: #e9ecef;
  pointer-events: none;
}

table.table {
    white-space: nowrap;
}

table.table td.wrap, table.table th.wrap {
    white-space: normal;       /* allow wrapping */
    word-wrap: break-word;     /* break long words */
    max-width: 350px;          /* optionally control width*/
    min-width: 250px;
  }