body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f0f0f0;
}

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

h1 {
	color: #333;
	margin-bottom: 20px;
}

.table-container {
	max-height: 300px;
	overflow-y: auto;
	margin-bottom: 20px;
	border: 1px solid #ddd;
	position: relative;
}

.table-container::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 30px;
	background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.9));
	pointer-events: none;
}

table {
	width: 100%;
	border-collapse: collapse;
	background-color: white;
}

th, td {
	border: 1px solid #ddd;
	padding: 4px 8px;
	text-align: left;
	font-size: 12px;
	line-height: 1.2;
}

th {
	background-color: #f2f2f2;
	position: sticky;
	top: 0;
	z-index: 10;
	font-size: 13px;
	padding: 8px;
}

tr:nth-child(even) {
	background-color: #f9f9f9;
}

.clickable-row {
	cursor: pointer;
	transition: background-color 0.3s;
}

.clickable-row:hover {
	background-color: #e0e0e0;
}

#soapContainer {
	background-color: white;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	position: relative;
}

.soap-toolbar {
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	align-items: center;
	background-color: #f0f0f0;
	padding: 5px;
	border-radius: 5px;
}

.toolbar-icon {
	margin: 0 5px;
	cursor: pointer;
	text-decoration: none;
	background: none;
	border: none;
	color: #333;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
}

.toolbar-icon:hover {
	opacity: 0.8;
}

.toolbar-icon img {
	width: 20px;
	height: 20px;
}

#audioPlayer {
	height: 20px;
	width: 150px;
	margin-left: 10px;
}

.paper {
	background-color: white;
	padding: 20px;
	margin-bottom: 20px;
}

#soapContent h2 {
	color: #333;
	border-bottom: 2px solid #333;
	padding-bottom: 10px;
}

#soapContent h3 {
	color: #4CAF50;
	margin-top: 20px;
}

.hidden {
	display: none;
}

/* Styles for index.html */
#app {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 20px;
	box-sizing: border-box;
}

#logo {
	position: absolute;
	top: 20px;
	left: 20px;
}

#logo img {
	max-width: 100px;
	height: auto;
}

#record-button {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	cursor: pointer;
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
}

#waveform {
	position: absolute;
	top: 0;
	left: 0;
}

#timer {
	font-size: 36px;
	margin-bottom: 20px;
	color: white;
}

#message {
	display: none;
	background-color: #4CAF50;
	color: white;
	padding: 10px;
	border-radius: 5px;
	margin-top: 20px;
}

/* Dark theme styles */
body.dark-theme {
	background-color: #1a1a1a;
	color: white;
}

body.dark-theme h1 {
	color: #ffffff;
}

/* Light theme styles */
body.light-theme {
	background-color: #f0f0f0;
	color: #333;
}

body.light-theme h1 {
	color: #333;
}