* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    background: #ffffff;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.site-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #222;
}

.submission-count {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.dropdown-container {
    text-align: center;
    margin-bottom: 40px;
}

.dropdown {
    padding: 12px 20px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    min-width: 200px;
}

.form-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 20px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.file-upload {
    width: 100%;
    padding: 12px;
    border: 2px dashed #ddd;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.file-upload:hover {
    border-color: #007bff;
}

.btn {
    padding: 12px 24px;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    margin-left: 10px;
}

.btn-secondary:hover {
    background: #545b62;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

.thank-you-screen {
    text-align: center;
    padding: 40px;
}

.thank-you-screen h2 {
    margin-bottom: 20px;
    color: #28a745;
}

.thank-you-screen p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.admin-section {
    margin-top: 30px;
}

.submission-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.submission-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.submission-details {
    flex: 1;
}

.submission-username {
    font-weight: 600;
    color: #007bff;
}

.submission-title {
    margin: 5px 0;
}

.audio-controls {
    display: flex;
    gap: 10px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

.error {
    color: #dc3545;
    text-align: center;
    padding: 10px;
    background: #f8d7da;
    border-radius: 6px;
    margin: 10px 0;
}

.intro-text {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.intro-text p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* Subscription form styles */
.classictemplate {
    background: #fff;
    clear: left;
    font: 14px Helvetica, Arial, sans-serif;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

#groupsio_embed_signup input {
    border: 1px solid #999;
    -webkit-appearance: none;
}

#groupsio_embed_signup label {
    display: block;
    font-size: 16px;
    padding-bottom: 10px;
    font-weight: bold;
}

#groupsio_embed_signup .email {
    display: block;
    padding: 8px;
    margin: 0 4% 10px 0;
    text-indent: 5px;
    width: 58%;
    min-width: 130px;
    border-radius: 4px;
}

#groupsio_embed_signup .button {
    width: 25%;
    margin: 0 0 10px 0;
    min-width: 90px;
    background-image: linear-gradient(to bottom, #337ab7 0, #265a88 100%);
    background-repeat: repeat-x;
    border-color: #245580;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
    color: #fff;
    background-color: #337ab7;
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: none;
    cursor: pointer;
}