/*
MIT License
Copyright (c) 2025 Little Ridge Tech Consulting

 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
 in the Software without restriction, including without limitation the rights
 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 copies of the Software, and to permit persons to whom the Software is
 furnished to do so, subject to the following conditions:
 
 The above copyright notice and this permission notice shall be included in all
 copies or substantial portions of the Software.
 
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 SOFTWARE.
*/
/* 
    Created on : May 24, 2025, 5:06:49 p.m.
    Author     : anthony
*/

@media only screen and (max-width: 800px) {
	
	/* Force table to not be like tables anymore */
	#lrtch-table table, 
	#lrtch-table thead, 
	#lrtch-table tbody, 
	#lrtch-table th, 
	#lrtch-table td, 
	#lrtch-table tr { 
		display: block; 
	}
 
	/* Hide table headers (but not display: none;, for accessibility) */
	#lrtch-table thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
 
	#lrtch-table tr { border: 1px solid #ccc; }
 
	#lrtch-table td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
		white-space: normal;
		text-align:left;
	}
 
	#lrtch-table td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
		text-align:left;
		font-weight: bold;
	}
 
	/*
	Label the data
	*/
	#lrtch-table td:before { content: attr(data-title); }
}

/* Base button styling applied to all button types */
.button,
.button-secondary,
.button-primary {
  display: inline-block;
  text-decoration: none;
  font-size: 13px;
  line-height: 26px;
  padding: 0 10px 1px;
  cursor: pointer;
  border: 1px solid #cccccc;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

/* Default background for basic buttons */
.button,
.button-secondary {
  background: #f7f7f7;
}

/* Hover state for basic and secondary buttons */
.button:hover,
.button-secondary:hover {
  background: #fafafa;
  border-color: #999;
  color: #222;
}

/* Additional styling for secondary buttons */
.button-secondary {
  color: #555;
}

/* Primary button styling */
.button-primary {
  background: #0073aa;
  border-color: #0073aa;
  color: #fff;
}

/* Primary button hover state */
.button-primary:hover {
  background: #006799;
  border-color: #006799;
  color: #fff;
}