/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

body{
    margin:0px;
    font-family: "inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    padding-bottom: 100px;

}

div{
    display:flex;
    flex-direction:column;
    box-sizing: border-box;
    overflow-x:scroll;
}

input, form, textarea, select, button {
    box-sizing: border-box;
}

.container{
    max-width:800px;
    width:100%;
    margin: 0 auto;
    overflow-x:scroll;

    @media(max-width: 800px){
    	padding: 0px 10px;
    }
}


#search-form {
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 15px 20px;
  font-size: 18px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-sizing: border-box;
  outline: none;
  transition: all 0.3s ease;
}

.search-input:focus {
  background-color: #fff;
  border-color: #4CAF50;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.search-input::placeholder {
  color: #999;
}

table{
    text-align:center;
    border:1px solid #eee;
    border-radius:4px;
    border-spacing:0px;
}

thead tr{
  background-color:rgb(144, 144, 142);
}

/* Style for odd-numbered rows (e.g., white background) */
tbody tr:nth-child(odd) {
  background-color: #ffffff; /* Or a very light grey */
}

/* Style for even-numbered rows (e.g., light grey background) */
tbody tr:nth-child(even) {
  background-color: #f2f2f2; /* A light grey color */
}

.post {
  padding: 10px 0px;
  border-bottom: 1px solid rgb(228, 228, 231);
}

.header {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 100;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}
