/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

body {
	color: #d9d6b3;
	font-family: sans-serif;
	background-color: #262626;
}
.navigation {
	border: ridge 10px #9db99a;
	padding: 1em;
}
.navigation span.title {
	font-size: larger;
}
a {
	color: #0F0;
}

.navigation nav {
	padding-top: 0.5em;
}
.navigation nav ul {
	display: contents;
}
.navigation ul li {
	display: inline;
	font-weight: bolder;
	border: 1px #0F0 solid;
	padding: 0.5em;
	line-height: 2.5em;
}
.navigation ul li a {
	color: #0F0;
}
.navigation ul li a:link {
	color: inherit;
}
img.flag {
	width: 16px;
}
img.p-logo {
	width: 24px;
	height: 24px;
}
table.demo-info tbody tr td:first-child {
	vertical-align: baseline;
	padding-right: 1em;
}
div#chart {
	width: 100%;
	height: 100%;
}
div.pagination {
	padding: 1em 0;
}
span.comment-ago {
	font-style: italic;
	font-size: smaller;
}
div.login-form {
	padding: 1em;
}
div.comments {
	margin: 1em 0;
}
details.feature-section {
	border: 5px #9db99a inset;
	padding: 0.5em;
	margin: 0.5em 0;
}
details.feature-section summary {
	cursor: pointer;
	font-weight: bolder;
	padding: 0.5em 0;
}
details.feature-section[open] summary {
	margin-bottom: 0.5em;
}

/** Demo Search Form **/
/* Collapsible Search */
.search-section {
	margin: 20px 0;
}

.collapsible-search {
	background-color: #333;
	color: #d9d6b3;
	cursor: pointer;
	padding: 10px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 18px;
	border-radius: 5px;
}

.collapsible-search:after {
	content: '\002B'; /* Plus symbol */
	float: right;
}

.collapsible-search.active:after {
	content: "\2212"; /* Minus symbol */
}

.search-form-content {
	padding: 0 18px;
	display: none;
	overflow: hidden;
	background-color: #444;
	border-radius: 5px;
	padding: 15px;
}

/* Form input styling */
.form-group {
	margin-bottom: 10px;
}

.form-label {
	display: block;
	margin-bottom: 5px;
	color: #d9d6b3;
}
/* Limit the width of form inputs */
.form-input {
  max-width: 300px; /* Adjust as needed */
  width: 100%;      /* Make it responsive */
  padding: 8px;
  background-color: #333;
  color: white;
  border: 1px solid #555;
  border-radius: 4px;
}

.btn {
	padding: 10px 15px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.btn-primary {
	background-color: #00FF00;
	color: #262626;
}

