@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.modal-backdrop {
    background-color: rgba(0,0,0,0.5);
}

.progress-bar {
    background-color: #e0e0e0;
    border-radius: 9999px;
    overflow: hidden;
    height: 1rem;
}

.progress {
    height: 100%;
    border-radius: 9999px;
    transition: width 0.5s ease-in-out;
}

.treasury-card {
    position: relative;
}

.delete-treasury-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: none;
    z-index: 10;
}

.treasury-card:hover .delete-treasury-btn {
    display: flex;
}
