/**
 * All of the CSS for your admin-specific functionality should be
 * included in this file.
 */

.patp .green{
    color:green;
}

.patp .orange{
    color:orange;
    font-weight: bold;
}

.patp .red{
    color:red;
    font-weight: bold;
}

 .patp .hidden
 {
     display:none;
 }

 .patp .postbox-header
 {
     padding-left:12px;
 }

 .patp .no-bottom
 {
    margin-bottom: 0px;
    border-bottom: 0px;
 }

 .patp .run_button
 {
     text-align: center;
     margin-bottom:15px;
     display:block;
 }

 .patp table.wp-list-table th
 {
     font-weight: bold;
 }

/* results table */ 

.quick_test_report_wrap
{
    text-align: center;
}

#quick_test_report
{
    background: white;
    display:inline-block;
    padding: 15px;
    display:none;
    margin-bottom: 15px;
}

#quick_test_report table
{
    border:0px;
    border-collapse: collapse;
    
}

#quick_test_report table tr:not(:first-child)
{
    border-top: 1px solid black;
}

#quick_test_report td
{
    padding:10px;
    border: 0px;
    padding-right: 20px;
}

/* load indicator */

.lds-ellipsis {
    position: absolute;
    left: 50%;
    top: 50%;
    height:60px;
    width:60px;
    margin:0px auto;
    -webkit-animation: rotation .6s infinite linear;
    -moz-animation: rotation .6s infinite linear;
    -o-animation: rotation .6s infinite linear;
    animation: rotation .6s infinite linear;
    border-left:6px solid rgba(0,174,239,.15);
    border-right:6px solid rgba(0,174,239,.15);
    border-bottom:6px solid rgba(0,174,239,.15);
    border-top:6px solid rgba(0,174,239,.8);
    border-radius:100%;
 }
 
 .run_button {
  padding: 15px 25px;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #fff;
  background-color: #3276B1;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px #999;
  width: 120px;
  margin: 10px auto;
}

.run_page_button {
    float: right;
    padding: 7px;
    background-color: #3276B1;
    width: 120px;
    border-radius: 15px;
    border: none;
    margin: 0px;
    cursor: pointer;
}

.run_button:hover {background-color: #5583ab}
.run_page_button:hover {background-color: #5583ab}

.run_button:active {
  background-color: #5583ab;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}


.loader {
  border: 4px solid #f3f3f3; /* Light grey */
  border-top: 4px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: spin 2s linear infinite;
  display: inline-block;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.dataTables_wrapper .dataTables_length select {
    width: 45px !important;
}



/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* 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: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
  background-color: white;
}

.tabcontent {
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Styles for deactivation modal
 * 
 * @since  v1.1.2
 * 
 */

.plugin-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.plugin-modal {
    background: white;
    padding: 25px;
    width: 500px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.plugin-modal h2 {
    margin-bottom: 10px;
}

.modal-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: space-around;
}

.confirm-button, .form-button, .cancel-button {
    padding: 10px 12px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}

.confirm-button {
    background: #0073aa;
    color: white;
}

.form-button {
    background: #ffba00;
    color: black;
}

.cancel-button {
    background: #ccc;
}


/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

 @-webkit-keyframes rotation {
    from {-webkit-transform: rotate(0deg);}
    to {-webkit-transform: rotate(359deg);}
 }
 @-moz-keyframes rotation {
    from {-moz-transform: rotate(0deg);}
    to {-moz-transform: rotate(359deg);}
 }
 @-o-keyframes rotation {
    from {-o-transform: rotate(0deg);}
    to {-o-transform: rotate(359deg);}
 }
 @keyframes rotation {
    from {transform: rotate(0deg);}
    to {transform: rotate(359deg);}
 }