/*
Copyright (C) 2024 Chris Vaughan

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
*/
/* 
    Created on : 21 Jun 2024, 15:18:29
    Author     : chris
*/

/* Style the tabs */
div.ra.tabs {
    overflow: hidden;

}

div.ra.tabContainer{
    display: inline-block;
}
/* Style the buttons that are used to open the tab content */
div.ra.tabContainer button {
    cursor: pointer;
    padding: 14px 16px;
    font-weight: bold;
    border-radius: 10px 10px 0px 0px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-bottom: 0px;
}

/* Change background color of buttons on hover */
div.ra.tabContainer button:hover {
    background-color: #D1D1D1;
}

/* Create an active/current tablink class */
div.ra.tabContainer button.active {
    background-color: #9BC8AB;
}

/* Style the tab content */
div.ra.contentContainer {
    border: 2px solid #9BC8AB;
    border-radius: 0px 10px 10px 10px;
}