/* Botones principales */
.btn-new-search {
    background: #0068ff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-new-search:hover {
    background: #0056d6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 104, 255, 0.3);
}

.btn-print {
    background: #28a745;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-print:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-retry {
    margin-top: 1.5em;
    padding: 0.7em 2em;
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-retry:hover {
    background: #b71c1c;
}

/* Botones de credencial actions */
.credencial-actions{
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.credencial-actions button {
    padding: 20px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.credencial-actions .btn-print{
    background-color: rgb(40, 167, 69);
    color: white;
}

.credencial-actions .btn-print:hover{
    background-color: rgb(30, 137, 59);
}

.credencial-actions .btn-new-search{
    background-color: rgb(0, 123, 255);
    color: white;
}

.credencial-actions .btn-new-search:hover{
    background-color: rgb(0, 103, 215);
}

/* Botones flotantes */
.floating-buttons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    color: var(--text-color);
}

.float-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.facebook {
    background: rgba(24, 119, 242, 0.7);
}

.instagram {
    background: rgba(228, 64, 95, 0.7);
}

.whatsapp {
    background: var(--primary-gradient);
    color: var(--text-color-dark);
}

/* Botón de autorizaciones */
.authorization-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.authorization-btn button {
    background: var(--primary-gradient);
    color: var(--text-color-dark);
    padding: 14px 20px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.authorization-btn button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    filter: brightness(1.1);
}

/* Botones con iconos profesionales */
.btn-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    position: relative;
    top: 2px;
}

.search-icon::before {
    content: '◉';
    font-size: 14px;
    color: inherit;
    font-weight: bold;
}

.email-icon::before {
    content: '✉';
    font-size: 14px;
    color: inherit;
}

/* Mejoras en los botones principales */
.btn-search {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-email {
    background: linear-gradient(135deg, #000000, #000000);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}
