/* Minification failed. Returning unminified contents.
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(7,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(8,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(9,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(10,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(25,28): run-time error CSS1039: Token not allowed after unary operator: '-bg-color'
(26,17): run-time error CSS1039: Token not allowed after unary operator: '-text-color'
(39,17): run-time error CSS1039: Token not allowed after unary operator: '-text-color'
(58,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
(64,17): run-time error CSS1039: Token not allowed after unary operator: '-primary-dark'
(76,35): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
(93,22): run-time error CSS1039: Token not allowed after unary operator: '-container-bg'
(100,28): run-time error CSS1039: Token not allowed after unary operator: '-footer-bg'
(101,17): run-time error CSS1039: Token not allowed after unary operator: '-footer-text'
(138,28): run-time error CSS1039: Token not allowed after unary operator: '-border-color'
(147,24): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
(154,28): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
(168,28): run-time error CSS1039: Token not allowed after unary operator: '-primary-dark'
(194,28): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
(238,28): run-time error CSS1039: Token not allowed after unary operator: '-primary-color'
 */
/* Global Styles */
:root {
    --primary-color: #00a5c0;
    --primary-dark: #005260;
    --text-color: #000;
    --tint-color: #f0f0f0;
    --bg-color: #a6a8ab;
    --container-bg: #fff;
    --border-color: #ddd;
    --footer-bg: #57575a;
    --footer-text: #fff;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    /*line-height: 1.6;*/
    display: flex;
    flex-direction: column;
    
    justify-content: center;
    align-items: center;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Layout */

.header-logo {
    width: 100%;
    margin: 0 auto;
    max-height: 100%;
    display: block;
    max-width: 750px;
    border-bottom: 3px solid var(--primary-color);
}

body {
    flex: 1 0 auto;
}

.body-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;

    max-width: 1000px;
    box-shadow: 0 0 20px 0.75rem rgba(0, 0, 0, 0.2);
}

.main-content {
    background: var(--container-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);

    padding: 3rem 1.5rem;
}

footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 1rem 0;
    text-align: center;
    font-size: 0.9rem;
    margin-top: auto;
}

footer a {
    color: #bbb;
}

footer a:hover {
    color: #fff;
}

/* Forms */
fieldset {
    border: none;
    padding: 0;
    margin: 0 0 20px 0;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s;
    margin-bottom: 15px;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(235, 110, 31, 0.2);
}

input[type="submit"],
input[type="button"],
button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s;
}

input[type="submit"]:hover,
input[type="button"]:hover,
button:hover {
    background-color: var(--primary-dark);
}


/* Validation */
.validation-summary-errors {
    color: #d9534f;
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.field-validation-error {
    color: #d9534f;
    font-size: 0.85rem;
    font-weight: bold;
}

input.input-validation-error {
    border-color: #d9534f;
}

/* Featured Section */
.featured {
    background-color: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.featured h1, .featured h2 {
    color: white;
}

/* Custom Page Styles */
.search-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-top: 10px;
}

.search-container input[type="submit"] {
    width: 100%;
}

.search-container input[type="text"] {
    flex: 1;
    margin-bottom: 0;
}

.text-muted {
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: normal;
}

.error-model {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 750px;
}

/* Messages */
.message-info {
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    margin: 20px 0;
    background-color: #fff4ed;
}

.message-error {
    color: #d9534f;
    font-size: 1.1em;
    font-weight: bold;
    /*margin: 20px 0;*/
}

.message-success {
    color: #5cb85c;
    font-size: 1.1em;
    font-weight: bold;
    margin: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        justify-content: flex-start;
    }
    
    #body {
        flex-grow: 1;
    }
    
    .body-wrapper {
        height: 100%;
    }
    
    main {
        flex-grow: 1;
    }
    
    .main-content {
        padding: 20px;
        height: 100%;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .footer-separator {
        display: block;
        height: 10px;
    }
}

