/* VPSSim Search Box Styles */
.vpssim-search-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    border-top: none;
    padding: 8px 0;
    pointer-events: none;
    box-shadow: none;
    display: flex;
    align-items: center;
}

.vpssim-search-left-accent {
    display: none;
}

.vpssim-search-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    pointer-events: auto;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    padding-right: 150px;
}

/* VPSSIM Version Info Styles */
.vpssim-version-info {
    position: relative;
    pointer-events: auto;
    z-index: 3;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: normal;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    transition: all 0.2s ease;
    height: 48px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.vpssim-version-info:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: #ffffff;
    text-decoration: none;
}

.vpssim-version-text {
    color: #ffffff;
    font-weight: normal;
}

/* VPSSIM Demo Button Styles */
.vpssim-demo-button {
    position: relative;
    pointer-events: auto;
    z-index: 3;
}

.vpssim-demo-link {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: normal;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(243, 156, 18, 0.3);
    transition: all 0.2s ease;
    height: 48px;
    box-sizing: border-box;
    text-decoration: none;
}

.vpssim-demo-link:hover {
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
    color: #ffffff;
}

/* Animation khi load */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.vpssim-search-container {
    animation: slideUp 0.3s ease-out;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .vpssim-search-container {
        padding: 6px 0;
    }
    
    .vpssim-search-wrapper {
        padding: 0;
        padding-right: 100px;
        gap: 8px;
    }
    
    .vpssim-version-info,
    .vpssim-demo-button {
        font-size: 14px;
        padding: 10px 16px;
        height: 40px;
    }
}
