/*
Theme Name: Total Child
Theme URI: http://totalwptheme.com
Description: Total WordPress theme example child theme.
Author: AJ Clarke
Author URI: http://totalwptheme.com
Template: Total
Version: 1.1
*/

/* Parent stylesheet should be loaded from functions.php not using @import */
/* Change the background of inactive tab buttons */
.your-custom-tabs .vc_tta-tabs-list .vc_tta-tab a {
  background-color: #3c4c43;
  color: #fff;
  border-color: #3c4c43;
}

/* Change the background of the active tab */
.your-custom-tabs .vc_tta-tabs-list .vc_active a {
  background-color: #2e3a34; /* a bit darker for active */
  color: #fff;
  border-color: #2e3a34;
}

/* Optional: On hover */
.your-custom-tabs .vc_tta-tabs-list .vc_tta-tab a:hover {
  background-color: #536357;
  color: #fff;
}