/* static/css/styles.css */
body {
    font-family: 'Inter', sans-serif;
}

.bg-pattern {
    background-color: #f8fafc;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.gradient-border-block {
    position: relative;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
}

.gradient-border-block::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: radial-gradient(ellipse 80% 30% at 5% 5%, #4f46e5 0%, #ec4899 15%, #eab308 30%, transparent 50%);
    border-radius: 11px;
    z-index: -1;
    pointer-events: none;
}

.gradient-border-block > div {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

/* Specific to dashboard */
.bg-pattern.bg-slate-50 {
    background-color: #f8fafc;
}

.copyright-footer {
    position: fixed; /* Sticks to the bottom of the viewport */
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f8f9fa; /* Light gray background for contrast */
    text-align: center;
    padding: 10px 0;
    font-size: 12px; /* Small, subtle text */
    color: #333; /* Dark gray text for readability */
    border-top: 1px solid #e7e7e7; /* Light border for separation */
    z-index: 1000; /* Ensures it stays on top of other content */
}

.copyright-footer p {
    margin: 0; /* Remove default paragraph margins */
    font-family: 'Inter', sans-serif; /* Matches your Inter font from index.html */
}