/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 20-jun-2024, 11:54:58
    Author     : a.lopez
*/

.estadoVacante {
    
    display: inline-block;
    outline: 0;
    appearance: none;
    padding: 0px 12px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    background-color: #3498db;
    border: 1px solid rgb(137, 151, 155);
    box-shadow: rgb(6 22 33 / 30%) 0px 1px 2px;
    color: white;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all 150ms ease-in-out 0s;   
    
  }
  
  
  
  
  .estadoNueva {
    
    display: inline-block;
    outline: 0;
    appearance: none;
    padding: 0px 12px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    background-color: #f39c12;
    border: 1px solid rgb(137, 151, 155);
    box-shadow: rgb(6 22 33 / 30%) 0px 1px 2px;
    color: white;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all 150ms ease-in-out 0s;   
    
  }
  
  
.estadoCompleta, .estadoAnulada {
    display: inline-block;
    outline: 0;
    appearance: none;
    padding: 0px 12px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    background-color: #e51317;
    color: white;
    //border: 1px solid rgb(137, 151, 155);
    border: 0px;
    box-shadow: rgb(6 22 33 / 30%) 0px 1px 2px;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    transition: all 150ms ease-in-out 0s;   
  }
  
  

                    
                  