/* Custom styles for Podcast Episodes Manager */

/* Table formatting */
.table-responsive {
    overflow-x: auto;
}

/* Ensure Actions column has minimum width */
.table th:last-child,
.table td:last-child {
    min-width: 200px;
    width: 200px;
    background-color: #f8f9fa !important;
    border: 2px solid #007bff !important;
}

/* Make sure buttons are visible and properly sized */
.btn-group-vertical .btn {
    margin-bottom: 2px;
    white-space: nowrap;
}

.btn-group-vertical .btn:last-child {
    margin-bottom: 0;
}

/* Debug: Make download buttons very obvious */
.download-btn {
    background-color: #ff0000 !important;
    border-color: #ff0000 !important;
    color: white !important;
    font-weight: bold !important;
    min-width: 120px !important;
}

.transcribe-btn {
    background-color: #00ff00 !important;
    border-color: #00ff00 !important;
    color: black !important;
    font-weight: bold !important;
    min-width: 120px !important;
}

/* Link styling */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Audio URL formatting in table */
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Form styling */
.form-control:focus, .form-select:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

/* Card styling for future use */
.card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Button hover effects */
.btn-primary:hover, .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.2);
} 