/* Base Styles */
.ikbase-plugin {
    width: 100%;
    /* font-family: 'Poppins', sans-serif; */
}

/* Common Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Common Elements */
.ikbase-centered-title {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
    animation: fadeInDown 1s ease-in-out;
}

.ikbase-back-button {
    margin: 20px 0;
}

.ikbase-back-button a {
    display: inline-flex;
    align-items: center;
    color: #1e73be;
    text-decoration: none;
    font-weight: 500;
}

.ikbase-back-button a:hover {
    color: #0056b3;
}

.ikbase-breadcrumb {
    margin: 20px 0;
    padding: 10px 0;
}

.ikbase-breadcrumb a {
    color: #1e73be;
    text-decoration: none;
}

.ikbase-breadcrumb a:hover {
    color: #0056b3;
} 