table thead {
  font-size: 0.8rem;
}
table tbody {
  font-size: 0.75rem;
}
td {
  overflow-wrap: break-word;
}
progress {
  margin-left: 16px;
  width: 354px;
}




/* Mainpage */

.md-sidebar[data-md-component="sidebar"]
{
	display: none;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	background-attachment: fixed;
	min-height: 100vh;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.md-typeset h1 {
	text-align: center;
	color: white;
	font-size: 48px;
	font-weight: bold;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	margin-bottom: 40px;
	letter-spacing: -.01em;
}

.main-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.section {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 20px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.2);
	backdrop-filter: blur(10px);
}

.section-header {
	font-size: 36px;
	font-weight: bold;
	color: white;
	text-align: left;
	padding-left: 20px;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	letter-spacing: 1px;
	border-radius: 20px 20px 0 0;
}

.themes-header {
	background: linear-gradient(135deg, #4CAF50, #2b8630);
}

.snippets-header {
	background: linear-gradient(135deg, #FF9800, #a05000);
}

.learn-header {
	background: linear-gradient(135deg, #2196F3, #084f96);
}

.themes-content {
	height: 80%;
	padding: 40px 20px;
	padding-top: 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.container-body {
	margin: 20px;
}

.container-footer
{
	border-radius: 0 0 20px 20px;
}

.themes-more
{
	width: 100%;
	height: 30px;
	text-align: right;
	padding-right: 15px;
	background: linear-gradient(135deg, #3ead41, #1f8825);
	a
	{
		width: 100%; 
		height: 100%;
		vertical-align:middle;
		color: white;
		text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
		font-weight: bold;
	}
}

.themes-grid {
	display: flex;
	align-items: start;
}

.theme-category {
	text-align: center;
}

.category-title {
    font-weight: bold;
    color: #2E7D32;
    margin-bottom: 10px;
    font-size: 16px;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(76, 175, 80, 0.3);
}

.category-separator {
	width: 1px;
	background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.2), transparent);
	height: 120px;
	margin: 0 auto;
}

.links-list {
	list-style: none;
}

.links-list li {
	margin-bottom: 8px;
}

.links-list a {
	color: #555;
	text-decoration: none;
	font-size: 13px;
	padding: 4px 8px;
	border-radius: 6px;
	display: block;
	transition: all 0.2s ease;
	background: transparent;
	border: none;
}

.links-list a:hover {
	background: rgba(76, 175, 80, 0.1);
	color: #2E7D32;
	transform: none;
	box-shadow: none;
}

.simple-links {
	display: grid;
	gap: 12px;
}

.simple-links a {
	color: #1976D2;
	text-decoration: none;
	font-size: 16px;
	padding: 12px 15px;
	border-radius: 10px;
	display: block;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.7);
	border: 2px solid rgba(25, 118, 210, 0.2);
	text-align: center;
	font-weight: 500;
}

.simple-links a:hover {
	background: rgba(25, 118, 210, 0.1);
	border-color: #1976D2;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(25, 118, 210, 0.3);
}

.tbd-notice {
	text-align: center;
	color: #666;
	font-style: italic;
	padding: 30px;
	background: rgba(255, 193, 7, 0.1);
	border-radius: 10px;
	border: 2px dashed rgba(255, 193, 7, 0.3);
}

@media (max-width: 768px) {
	h1 {
		font-size: 36px;
	}
}

@media (max-width: 480px) {

	h1 {
		font-size: 28px;
		margin-bottom: 30px;
	}
}
