/* style.css */

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
	line-height: 1.6;
}

.page-container {
    min-height: 100vh; /* full viewport height */
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1; /* takes remaining space */
}

footer {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
}

.warning {
    color: #d32f2f;         /* red text */
    font-weight: bold;
    margin: 1em 0;
}

/* Content area */
/*.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    color: #333;
}
*/

/* Titles */
.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0056b3;
    margin-bottom: 0.75rem;
}

/* Lists */
.list {
    list-style-type: disc;
    padding-left: 20px;
    margin: 1rem 0;
}

/* Quote */
.quote {
    font-style: italic;
    border-left: 4px solid #007bff;
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: #555;
}

/* Links */
.link {
    color: #007bff;
    text-decoration: underline;
}

.link:hover {
    color: #0056b3;
}

.contact-page {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.btn {
    color: white;
    border: none;
    /*padding: 0.75rem;*/
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
}

.btn:hover {
    background: rgb(128, 128, 128);
}


.response-message {
    margin-top: 1rem;
    font-weight: bold;
}

.success {
    color: green;
}

.error {
    color: red;
}
.nav-link.active-link {
	background-color: #46bc46;
	border-radius: 5px;
	color: white !important;
}
  
.navbar-nav .nav-link:hover {
	background-color: orange;
    border-radius: 5px;
    color: white !important;
}
   
.navbar-nav .nav-item {
	margin-left: 5px; /* Adjust spacing as needed */
}

.card {
    border: none;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.card-title a {
    color: #0d6efd;
    font-weight: 600;
}
.card-text {
	/*font-size: 14px;*/
    color: #555;
}
.meta-info {
    font-size: 14px;
    color: #777;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.predictive-pick {
    
    display: flex;
    align-items: center;
    gap: 4px;
}
/*.page-title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}*/