/* Styles globaux de l'application */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    color: #333;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    padding: 20px;
}

/* Styles pour la preview RSS dans RecordSetAdmin */
.rss-item {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    gap: 15px;
    transition: background-color 0.2s;
}

.rss-item:hover {
    background-color: #f8f9fa;
}

.rss-item:last-child {
    border-bottom: none;
}

.rss-thumbnail {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.no-thumb {
    width: 100px;
    height: 75px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 24px;
    border-radius: 4px;
    flex-shrink: 0;
}

.rss-content {
    flex: 1;
    min-width: 0;
}

.rss-title {
    font-weight: 600;
    font-size: 16px;
    color: #2c5aa0;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.rss-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
