:root {
    --primary-color: #35abe5;
    --background-color: #f8f9fa;
    --text-color: #343a40;
    --card-background: white;
    --border-color: white;
    --shadow: white;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: robotoc; /* set name */
    src: url(assets/font/Oxanium-VariableFont_wght.ttf); /* url of the font */
}

.roboto-condensed-<uniquifier> {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.plus-jakarta-sans-<uniquifier> {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

body {
    
    font-family: "Roboto Condensed", sans-serif;
    background-color: white;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-weight: <weight>;
    font-style: normal;
}

header {
    background-color:  #ffff;
    color: White;
    align-content: center;
    padding: 2.5rem 0;
    text-align: center;
    box-shadow: var(--shadow);
    width: 25%;
    height: 25%;
}

header h1 {
    font-size: 3rem;
    font-weight: 700;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

/*.search-box {*/
/*    display: flex;*/
/*    width: 100%;*/
/*    max-width: 800px;*/
/*    margin-bottom: 2rem;*/
/*    border-radius: 22px;*/
/*    overflow: hidden;*/
/*    box-shadow: var(--shadow);*/
/*    border-color: #82b704;*/
/*    border-radius: 25px;*/
/*    border: 3px solid #82b704;*/

/*}*/

img {
  width: 100%;
  height: auto;
}

.responsive {
  width: auto%;
  height: auto;
}

/*#searchInput {*/
/*    flex: 1;*/
/*    padding: 1rem;*/
/*    font-size: 1.1rem;*/
/*    border: none;*/
/*    outline: none;*/
/*}*/

/*#searchButton {*/
/*    padding: 1rem 2rem;*/
/*    font-size: 1.1rem;*/
/*    border: none;*/
/*    background-color: #82b704;*/
/*    color: white;*/
/*    cursor: pointer;*/
/*    transition: background-color 0.3s ease;*/
/*}*/

/*#searchButton:hover {*/
/*    background-color: #000000;*/
/*}*/

.search-box {
    display: flex;
    width: 100%;
    max-width: 800px;
    margin-bottom: 2rem;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: #82b704;
    border-color: #82b704;
    border: 3px solid #82b704;
}
#searchInput {
    flex: 1;
    padding: 1rem;
    font-size: 1.1rem;
    border: none;
    outline: none;
    color: #313233;
    background-color: #fff;
}
#searchInput::placeholder {
  color: #313233;
}

#searchButton {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius-top: 40px !important;
    -moz-border-radius-bottomright: 40px !important;
    background-color: #82b704;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#searchButton:hover {
    background-color: #313233;
}

#resultsContainer {
    width: 100%;
    max-width: 800px;
}

#tableContainer {
    width: 100%;
    max-width: 800px;
}

.result-card {
    background-color: #fff;
    /*background: linear-gradient(90deg,rgba(130, 183, 4, 1) 0%, rgba(130, 183, 4, 1) 22%, rgba(53, 171, 229, 1) 86%);*/
    color: #000000;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);*/
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    transition: transform 0.2s ease;
}

.result-card:hover {
    transform: translateY(-5px);
}

.result-card h3 {
    margin: 0 0 0.5rem 0;
}

.result-card a {
    text-decoration: none;
    color: #000000;
    font-size: 1.45rem;
    font-weight: 500;
    font-style: bold;
    background-color: transparent;
}

.result-card p {
    margin: 0;
    line-height: 1.0;

}

.initial-message {
    text-align: center;
    color: #82b704;
    font-style: italic;
    margin-top: 2rem;
    margin-bottom:15px;
}
.initial-message-init {
    text-align: center;
    color: #82b704;
    font-style: bold;
    margin-top: 2rem;
    margin-bottom:15px;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #35abe5;
    color: white;
    margin-top: auto;
}

/* --- Responsive adjustments for smaller screens --- */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    .search-box {
        flex-direction: column;
        border-radius: 8px;
        box-shadow: none;
    }
    #searchInput {
        border-radius: 8px;
        margin-bottom: 1rem;
        box-shadow: var(--shadow);
    }
    #searchButton {
        border-radius: 8px;
    }
    main {
        padding: 1rem;
    }
}