:root {
    --font: "Inter", sans-serif;
    --primary: #002554;
    --secondary: #B9975b;
    --tertiary: #f3ede3;
    --tertiarylight: #f8f5ef;
    --primarylight: #335176;
    --primarylighter: #e6eaee;
    --hover-blue: #001a3b;
    --white: #ffffff;
    --button-border: 1px solid #b9975b;
    --button-border-small:#d5c19d;
    --lines: #bfc8d4;
    --slider-background: #f2f4f6;
    --tabs-background: #f2f2f2;
}



body {
    line-height: 150%;
    font-weight: 400;
}

.heading {
    font-size: 28px;
}

small {
    font-size: 70%;
}

.body-text {
    font-size: 16px;
    font-weight: 400;
}

.bold {
    font-weight: 700;
}

.font-primary {
    color: var(--primary);
}

.font-secondary {
    color: var(--secondary);
}

.font-tertiary {
    color: var(--tertiary);
}

.button {
    text-align: left;
    border-radius: 0px;
    color: var(--primary);
    background-color: transparent;
    font-size: 16px;
    border-top: 0px;
    border-bottom: var(--button-border);
    border-left: 0px;
    border-right: 0px;
    font-weight: 500;
    font-family: var(--font);
    position: relative;
    overflow: hidden;
    display: flex;
    /* 15px right padding creates the '5px to the right' look initially */
    padding: 12px 1px 12px 0px; 
    transition: background-color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.btn-content {
    display: flex;
    align-items: center;
    width: 100%;
}

/* .btn-text {
    flex-shrink: 0;
    
} */

.btn-icon {
    display: block;
    width: 20px;
    flex-shrink: 0;
    /* This pushes the icon to the right side automatically */
    margin-left: auto; 
    transform: translateX(-5px); /* Initial offset from the edge */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Hover States --- */

.button:hover {
    /* Reduces right padding to 0, moving the icon to the absolute end */
    /* padding-right: 1px;  */
}

.button:hover .btn-icon {
    /* Moves the icon 5px to the right to hit the absolute edge */
    transform: translateX(0px); 
}

.button:hover .progress-line {
    width: 100%; /* Animates progress bar */
}

/* --- Progress Bar --- */
.progress-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--button-border-small);
    transition: width 0.4s ease;
}


.poweredby {
    font-family: "Inter", sans-serif;
    font-size: 9px;
    color: var(--lines);
    text-align: right;
    padding-right: 8px;
    padding-top: 0px;
    letter-spacing: 2px;
    height: 10px;
    /* border-top: 1px solid #AA1527; */
    padding: 5px 0;
}

.poweredby a {
	color: var(--lines);
	text-decoration: none;
}





