﻿ /* Style the tab */
.tab {
    /*  overflow: hidden;
  
  background-color: white;
  box-shadow:inset;*/
    border: 1px solid #ccc;
    background: #2c3e50;
    color: #fff;
    font-weight: bold
}

/* Style the buttons that are used to open the tab content */
    .tab button {
        background-color: inherit;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 10px 12px;
        transition: 0.3s;
        font-size: 16px;
        color: white;
    }

/* Change background color of buttons on hover */
        .tab button:hover {
            background-color: #121111;
            color: white;
        }

/* Create an active/current tablink class */
        .tab button.active {
            background-color: #000000;
            color: white
        }

/* Style the tab content */
.tabcontent {
  display: none;
  /*padding: 6px 12px;
  border: 1px solid #ccc;*/
  border-top: none;
}
.statusTab{
    border:1px initial;
    border-radius:3%;
    background:inherit;
    text-align:center;
}
.statusTab button {
    background-color:green;
    color:white;
    margin:3px 3px 3px 3px;
}
#btnRechazar{
    background-color:red;
    color:white;
    margin:3px 3px 3px 3px;
    font-family:Verdana
}
.statusTab button.active{
    background-color:black;
    color:white;
    margin:3px 3px 3px 3px;
}