.btn-talkie {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-image: url(../images/talkie-speak.gif);
    background-color: #0073aa;
    background-repeat: no-repeat;
    background-position: 12px center;
    background-size: 18px;
    color: #ffffff !important;
    padding: 10px 16px 10px 38px !important;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.btn-talkie:hover {
    background-color: #005a87;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-talkie:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-outlined {
    background-image: url(../images/talkie-speak-b.gif);
    background-color: transparent !important;
    color: #0073aa !important;
    border: 2px solid #0073aa !important;
    box-shadow: none;
}

.btn-outlined:hover {
    background-color: #0073aa !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 115, 170, 0.15);
}

/* Responsive aanpassingen */
@media (max-width: 480px) {
    .btn-talkie {
        font-size: 13px;
        padding: 8px 14px 8px 34px !important;
        background-size: 16px;
        background-position: 10px center;
    }
}

/* Job Actions Container - Flexbox layout voor knoppen */
.vca-job-actions-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin: 16px 0;
    flex-wrap: wrap;
}

/* Print Job Button styling om te matchen met Talkie button */
.vca-printjob-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #666666;
    color: #ffffff !important;
    padding: 10px 16px !important;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1;
}

.vca-printjob-btn:hover {
    background-color: #555555;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #ffffff !important;
}

.vca-printjob-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive layout voor kleinere schermen */
@media (max-width: 600px) {
    .vca-job-actions-container {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .vca-job-actions-container > * {
        width: 100%;
        justify-content: center;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .btn-talkie {
        background-color: #2271b1;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .btn-talkie:hover {
        background-color: #135e96;
    }
    
    .btn-outlined {
        color: #2271b1 !important;
        border-color: #2271b1 !important;
    }
    
    .btn-outlined:hover {
        background-color: #2271b1 !important;
    }
    
    .vca-printjob-btn {
        background-color: #4f4f4f;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .vca-printjob-btn:hover {
        background-color: #3a3a3a;
    }
}