/* Button Component Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-family: 'inter';
}
.btn:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Button Sizes */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.btn-md {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
}

/* Button Variants */
.btn-primary {
    background-color: #1f2937;
    color: #ffffff;
    border: 1px solid #1f2937;
}

.btn-black {
    background-color: #000;
    color: #ffffff;
    border: 1px solid #000;
}


.btn-primary:hover:not(:disabled) {
    background-color: #111827;
    border-color: #111827;
}

.btn-secondary {
    background-color: #6b7280;
    color: #ffffff;
    border: 1px solid #6b7280;
}

.btn-secondary:hover:not(:disabled) {
    background-color: #4b5563;
    border-color: #4b5563;
}

.btn-outline {
    background-color: transparent;
    color: #1f2937;
    border: 1px solid #1f2937;
}

.btn-outline:hover:not(:disabled) {
    background-color: #1f2937;
    color: #ffffff;
}

.btn-ghost {
    background-color: transparent;
    color: #1f2937;
    border: 1px solid transparent;
}

.btn-ghost:hover:not(:disabled) {
    background-color: #f3f4f6;
}

/* Button Icons */
.btn-icon-left,
.btn-icon-right {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon-left svg,
.btn-icon-right svg {
    width: 1em;
    height: 1em;
}

/* Button Width */
.btn.w-full {
    width: 100%;
}

.btn.w-fit {
    width: fit-content;
}

.btn.w-auto {
    width: auto;
}

/* Button Rounded */
.btn.rounded-none {
    border-radius: 0;
}

.btn.rounded-sm {
    border-radius: 0.25rem;
}

.btn.rounded-md {
    border-radius: 0.375rem;
}

.btn.rounded-lg {
    border-radius: 0.5rem;
}

.btn.rounded-full {
    border-radius: 9999px;
}

/* Button Margins */
.btn.mt-4 {
    margin-top: 1rem;
}

.btn.mt-6 {
    margin-top: 1.5rem;
}

.btn.mt-8 {
    margin-top: 2rem;
}

.btn.mb-4 {
    margin-bottom: 1rem;
}

.btn.mb-6 {
    margin-bottom: 1.5rem;
}

.btn.mb-8 {
    margin-bottom: 2rem;
}
