.download-container {
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.download-poster {
    width: 120px;
    height: 180px;
    margin-right: 20px;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.download-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-info {
    flex-grow: 1;
}

.download-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.download-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.download-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.download-button:hover {
    background-color: #45a049;
    text-decoration: none;
    color: #fff;
}

.download-count {
    margin-left: 15px;
    color: #666;
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
}

/* Admin Media Library Styles */
.download-count-column {
    display: flex;
    align-items: center;
    gap: 10px;
}

.download-count-column .reset-count {
    padding: 2px 8px;
    font-size: 12px;
    line-height: 1.5;
}