
.location-info {
	margin-bottom: 12px;
}

body {
	font-family: monospace;
	background-color: #f0f0f0;
	margin: 0;
	padding: 20px;
	display: flex;
	justify-content: center;
}

.container {
	background-color: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	text-align: center;
	max-width: 1000px;
	width: 100%;
}

.section-container {
	margin: 30px 0;
	padding: 20px;
	border-radius: 10px;
	background-color: #f9f9f9;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section-title {
	margin-top: 0;
	padding-bottom: 10px;
	border-bottom: 1px solid #ddd;
}

        
.section-content {
	display: none;
}

.section-content.active {
	display: block;
}

/* Styling for location button in the main container */
#locationButton {
	margin: 10px auto 20px;
	display: block;
	padding: 8px 16px;
	background-color: #5a5a5a;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 0.9em;
	transition: background-color 0.2s;
}

#locationButton:hover {
	background-color: #444444;
}

.tab-container {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}

.tab {
	padding: 10px 20px;
	margin: 0 5px;
	background-color: #eee;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
}

.tab.active {
	background-color: #007bff;
	color: white;
}

.time-display, .section{
	margin: 20px 0;
	padding: 15px;
	background-color: #f8f9fa;
	border-radius: 5px;
	border-left: 4px solid #5a5a5a;
}

#planets-section .section {
	overflow-x: auto;
}

.info-item {
	margin: 20px 0;
	padding: 15px;
	background-color: #f8f9fa;
	border-radius: 5px;
}

.time-label, .info-label {
	font-weight: bold;
	color: #666;
	font-size: 1.25em;
	margin-bottom: 5px;
}

.time-value, .info-value {
	font-size: 1.75em;
	color: #333;
	font-weight: bold;
}

.location-button {
	margin-top: 15px;
	padding: 10px 20px;
	background-color: #5a5a5a;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 0.9em;
}
.location-button:hover {
	background-color: #8f8f8f;
}
.location-button:disabled {
	background-color: #6c757d;
	cursor: not-allowed;
}

.date-picker-section {
	margin-bottom: 20px;
	padding: 15px;
	background-color: #e9ecef;
	border-radius: 5px;
}
.date-picker-section label {
	display: block;
	margin-bottom: 8px;
	color: #333;
	font-weight: bold;
	font-size: 1.1em;
}
#datePicker, #sunDatePicker, #moonDatePicker, #planetDatePickerDate, #planetDatePickerTime {
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #ccc;
	background-color: white;
	color: #333;
	font-size: 1em;
	font-family: 'Courier New', monospace;
}

.main-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	align-items: start;
}
.left-column {
	text-align: center;
}

.credit {
	margin-top: 15px;
	font-size: 0.9em;
	color: #666;
}
.right-column {
	background-color: #f8f9fa;
	padding: 20px;
	border-radius: 10px;
	border-left: 4px solid #5a5a5a;
}

table {
	margin: 0 auto;
	border-collapse: collapse;
	width: 100%;
	font-size: 1.2em;
}
th, td {
	padding: 8px;
	border-bottom: 1px solid #ddd;
}
th {
	background-color: #f8f9fa;
	font-weight: bold;
	color: #444;
	text-align: center;
}
tr:hover {
	background-color: #f5f5f5;
}
.planet-name {
	font-weight: bold;
	text-align: left;
}
td.ra, td.dec, td.altitude, td.azimuth, td.rise, td.transit, td.set {
	text-align: center;
}
.info-value {
	font-size: 1.2em;
	color: #333;
	font-weight: bold;
}

