/***********************************************************************************/
/* CLOBAR CSS                                                                      */
/***********************************************************************************/

/************************************ BODY STYLING *********************************/

/* Pleasant light beige background for the entire website */
body {
    background-color: #F5F1E8 !important; /* Warmer light beige */
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Ensure html element also has the background */
html {
    background-color: #F5F1E8 !important; /* Warmer light beige */
}

/* Additional body styling to ensure background shows */
body, html {
    min-height: 100vh;
    background-color: #F5F1E8 !important;
}

/************************************ TOP MENU BAR *********************************/

/* Add a black background color to the top navigation */

.navbar {
    overflow: hidden;
    background-color: #333;
    position: fixed; 
    top: 0; 
    width: 100%;
    transition: top 0.3s;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change background on mouse-over */
.navbar a:hover {
  background: #ddd;
  color: black;
}

/************************************* THE LOGO LINE ***********************************/

.logo {
    margin: 10px;
    display:flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    width: 100%; 
}
.logoimg { 
}    

.logotxt {
}

/************************************** THE HOME PAGE ***********************************/

.home {
    dislay: flex;
    flex-direction: column;
    padding: 5px;
    /* background-color: DodgerBlue; */
    width: 900px;
}

.home-item {
    dislay: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
}

.home-item > span {
    height: 100px;
    margin: 10px;
}

/* .topics-item { */
/*     margin-right: 20px; */
/* } */

/* .topics-item > span { */
/*     text-align: left; */
/*     font-size: 12; */
/* } */

/********************************** TABLE SETTINGS *********************************/


/* General table settings. */

table {
    border: 1px solid black;
    text-align:left;
    padding-left: 1px;
    font-size: 14px;
    /* width: 800px; */
}

th {
    border: 1px solid black;
    font-face: bold; 
    /* text-align: left */
    color: blue;
}

td {
    border: 1px solid black; 
    text-align :left;
}

/************************************ ELEGANT FORM STYLING ***********************************/

.search-form {
    margin: 20px 0;
    padding: 20px;
    background-color: #FBF9F4; /* Slightly lighter than body for subtle contrast */
    border: 1px solid #E6E1D6;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end; /* Align input boxes at the bottom */
    gap: 15px;
    margin-bottom: 0;
    justify-content: flex-end; /* Right align the entire row */
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 180px; /* Fixed equal width for all form groups */
    text-align: right; /* Right align content within each group */
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px; /* Increased from 5px to 10px for more whitespace */
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: right; /* Right align labels */
}

.form-input {
    padding: 10px 12px;
    border: 2px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: white;
    height: 20px; /* Fixed height for consistent alignment */
    box-sizing: border-box; /* Include padding and border in height calculation */
    width: 100%; /* Fill the fixed width of form-group */
}

.form-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
    background-color: #fff;
}

.form-submit {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 44px; /* Match the total height of input fields */
    box-sizing: border-box;
    align-self: flex-end; /* Align with the bottom of input fields */
    width: 100%; /* Fill the fixed width of form-group */
}

.form-submit:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.form-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/************************************ THE SAMPLE PAGE ***********************************/

.thing1 {
    background-color: blue;
}

.thing2 {
    background-color: white;
}

.thing3 {
    background-color: red;
}


;;;----------------------------------------------------------------------------
;;; Almost End of File
;;;----------------------------------------------------------------------------

#_
[:style
 "html, body {padding: 0; font-family: Helvetica, Arial; color: #3A4244;}"
 "header {padding: 2px 30px; background: #CAE7EC; font-size: 20px;}"
 "header h1 {text-align:left; vertical-align:text-top;}"
 "header a {color: #1A1E20; text-decoration: none; text-align:middle; text-align:center;}"
 "section {padding: 10px 30px; background: beige}"
 "table{border-collapse:collapse;}"
 "table, th, td{border:1px solid green; padding-left: 2px; font-size: 12px;}"
 "th{font-face:bold;}"
 "td{text-align:left;}"
 "tr{vertical-align:text-top;vertical-align:top;}"
 "th{text-align:left; background-color:orange; color:white;}"
 "canvas {border: 1px dashed black; }"]

/*******************************************************************************/
/* End of File
/*******************************************************************************/
