/**
 * Project      : Indekost ERP - Property Management System
 * Version      : 1.0.0
 * Author       : Adhika Pelagosa
 * Created      : May 2026
 * Description  : Custom UI styling for Indekost Filament Dashboard.
 * Collaborator : PT Dharma Cipta Sinergi / Dharma Digital
 */

/**
 * FONT FACE (SELF HOST - FULL FEATURE)
 */
@font-face {
    font-family: 'Instrument Sans';
    src: url('/fonts/filament/filament/InstrumentSans-Medium.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Sans';
    src: url('/fonts/filament/filament/InstrumentSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/**
 * GLOBAL OVERRIDE
 */
html {
    font-family: 'Instrument Sans', sans-serif;

    /* AKTIFKAN STYLISTIC SET */
    font-feature-settings: "ss02" 1, "ss09" 1;

    /* fallback modern syntax */
    font-variant-alternates: styleset(ss02, ss09);
}

/* FORCE FILAMENT */
body,
.fi-body,
[class*="fi-"] {
    font-family: 'Instrument Sans', sans-serif !important;
    font-feature-settings: "ss02" 1, "ss09" 1;
}

aside.fi-sidebar.fi-main-sidebar.fi-sidebar-open {
    background-color: #fff;
}
aside.fi-sidebar.fi-main-sidebar.fi-sidebar-open:where(.dark,.dark *) {
    background-color: #18181b;
}

.premium-shadow {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.popular-card-glow {
    box-shadow: 0 0 20px rgba(var(--primary-500), 0.2);
}

/* Card Container Base */
.dark-card {
    background-color: #1a1b21;
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}
.dark-card:hover {
    border-color: #2e3039;
}

/* Ribbon Styling for Sale */
.ribbon-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-top-right-radius: 0.5rem;
    z-index: 10;
}
.ribbon {
    position: absolute;
    top: 10px;
    right: -30px;
    background-color: #3b82f6; /* Blue-500 */
    color: white;
    padding: 4px 40px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Dashed Border for Button */
.btn-purchase {
    border: 1px dashed #3b82f6;
    color: #3b82f6;
    transition: all 0.3s ease;
}
.btn-purchase:hover {
    background-color: rgba(59, 130, 246, 0.1);
    border-color: #60a5fa;
    color: #60a5fa;
}

.fi-ta-content-ctn .fi-ta-content .fi-ta-record .fi-ta-record-content-ctn{
  flex-direction: row !important;
}
.cst-input-file{
    padding: 10px;
    border: 1px solid #e7e3e4;
    border-radius: 8px;
}
.admin-card-desc{
    padding: 24px;
    background-color: rgb(255 255 255 / 10%);
    border-radius: 8px;
    margin-bottom: 16px;
}
.admin-card-desc p{
    
}
.admin-card-desc ul{
    margin-top: 8px;
    padding-left: 16px;
}
.admin-card-desc li{
    list-style: disc;
}
.billing-bank img{
    max-width: 56px;
    margin-right: 16px;
}
.fi-fo-field-content-col .fi-input-wrp{
    width: 100%;
}