/**
 * Bunny Stream Uploader Styles
 */
.gm-bunny-uploader {
    margin: 10px 0;
}

.gm-bunny-drop-zone {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.gm-bunny-drop-zone:hover {
    border-color: #666;
    background: #f5f5f5;
}

.gm-bunny-drop-zone.dragover {
    border-color: #2271b1;
    background: #f0f6fc;
}

.gm-bunny-drop-content .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: #666;
    margin-bottom: 10px;
}

.gm-bunny-drop-content p {
    margin: 5px 0;
    color: #555;
}

.gm-bunny-drop-content .upload-hint {
    font-size: 12px;
    color: #999;
}

.gm-bunny-drop-content .file-types {
    font-size: 11px;
    color: #bbb;
    margin-top: 8px;
}

.gm-bunny-file-input {
    display: none;
}

.gm-bunny-progress {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background: #fafafa;
}

.gm-bunny-progress-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin: 10px 0;
}

.gm-bunny-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2271b1, #00a0d2);
    transition: width 0.3s ease;
    border-radius: 4px;
}

.gm-bunny-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #555;
}

.gm-bunny-file-name {
    font-weight: 600;
    max-width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gm-bunny-progress-text {
    font-weight: 700;
    color: #2271b1;
}

.gm-bunny-actions {
    margin-top: 12px;
    text-align: right;
}

.gm-bunny-complete {
    border: 1px solid #46b450;
    border-radius: 8px;
    padding: 15px 20px;
    background: #f0f9ef;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gm-bunny-complete .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: #46b450;
}

.gm-bunny-complete .complete-text {
    flex: 1;
    color: #2d6e2d;
    font-weight: 500;
}

.gm-bunny-complete .button-danger {
    color: #a00;
    border-color: #a00;
}

.gm-bunny-complete .button-danger:hover {
    color: #d00;
    border-color: #d00;
    background: #fff0f0;
}

.gm-bunny-error {
    margin: 10px 0 !important;
}

.gm-bunny-error .notice-dismiss {
    cursor: pointer;
}

@media (max-width: 768px) {
    .gm-bunny-drop-zone {
        padding: 20px 15px;
    }
    
    .gm-bunny-drop-content .dashicons {
        font-size: 32px;
        width: 32px;
        height: 32px;
    }
    
    .gm-bunny-complete {
        flex-wrap: wrap;
    }
    
    .gm-bunny-complete .button {
        width: 100%;
        text-align: center;
    }
}