/* static/style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

h1 {
    text-align: center;
    padding: 20px;
    color: #222;
}

form {
    text-align: center;
    margin-bottom: 20px;
}

input[type="text"] {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    padding: 10px 20px;
    border: none;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

.show-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px;
    margin: 15px auto;
    max-width: 1000px; /* Controls card width */
}

.show-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 8px;
}

.show-date {
    color: #666;
    margin-bottom: 8px;
}

.show-form {
    font-style: italic;
    color: #444;
    margin-bottom: 10px;
}

.show-performers {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.performer {
    font-family: inherit;
    background-color: #e9ecef;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9em;
}


.performer:link,
.performer:visited,
.performer:hover,
.performer:focus,
.performer:active {
    color: inherit;           /* same color even after clicked */
    text-decoration: none;    /* no underline in any state */
}
