/**
 * Styles for JW Player Scheduled Livestreams plugin
 */

/* Main container */
.jwplayer-scheduled-streams {
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Table styles */
.jwplayer-schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.jwplayer-schedule-table th,
.jwplayer-schedule-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.jwplayer-schedule-table th {
    background-color: #f5f5f5;
    font-weight: bold;
    color: #333;
    border-bottom: 2px solid #ddd;
}

.jwplayer-schedule-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.jwplayer-schedule-table tr:hover {
    background-color: #f1f1f1;
}

/* Empty message styles */
.jwplayer-scheduled-streams-empty {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    color: #666;
}

/* Title styles */
.jwplayer-scheduled-streams h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Admin table styles */
.jwplayer-scheduled-admin {
    margin-top: 20px;
}

.jwplayer-scheduled-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.jwplayer-scheduled-table th,
.jwplayer-scheduled-table td {
    padding: 12px 15px;
    text-align: left;
}

.jwplayer-scheduled-table th {
    background-color: #f1f1f1;
    font-weight: bold;
}

.jwplayer-scheduled-table .remove-stream {
    margin-right: 10px;
}

.jwplayer-scheduled-table .spinner {
    vertical-align: middle;
}

/* Notice styles */
.jwplayer-scheduled-admin .notice {
    margin: 10px 0 20px;
}
.jwplayer-scheduled-streams h3 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    font-size: 1.5em;
    color: #333;
}

/* Responsive styles */
@media screen and (max-width: 600px) {
    .jwplayer-schedule-table th, 
    .jwplayer-schedule-table td {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .jwplayer-schedule-table {
        display: block;
        overflow-x: auto;
    }
}
