/* Footer Styles */
.ikbase-main-footer {
    padding: 40px 0 20px;
    margin-top: 60px;
    border-top: 1px solid #eee;
}

.ikbase-plugin-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.ikbase-plugin-footer p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.ikbase-plugin-footer a {
    color: #1e73be;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ikbase-plugin-footer a:hover {
    color: #0056b3;
}

/* Support Block */
.ikbase-support-block {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ikbase-support-block a {
    display: inline-block;
    background: #1e73be;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.ikbase-support-block a:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* Credit Text */
.ikbase-credit {
    text-align: center;
    font-size: 11px;
    color: #888;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.ikbase-credit a {
    color: #1e73be;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ikbase-credit a:hover {
    color: #0056b3;
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .ikbase-main-footer {
        padding: 30px 0 15px;
        margin-top: 40px;
    }
    
    .ikbase-support-block {
        padding: 20px;
        margin-top: 30px;
    }

    .ikbase-credit {
        font-size: 10px;
        margin-top: 15px;
        padding-top: 10px;
    }
} 