/* 1. Main Container */
#new-feature-section {
    max-width: 700px;
    margin: 20px auto;
    padding: 25px;
    font-family: sans-serif;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
}

#new-feature-section h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.4rem;
}

/* 2. Row Layout */
#new-feature-section .file-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

#new-feature-section .file-row:last-child {
    border-bottom: none;
}

/* 3. The PDF Icon (SVG Data URI) */
#new-feature-section .pdf-icon {
    width: 28px;
    height: 28px;
    margin-right: 15px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e74c3c'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9v-2h2c.55 0 1 .45 1 1s-.45 1-1 1zm4-4h-2v2h2c.55 0 1 .45 1 1s-.45 1-1 1h-2v1h-1v-5h3c.55 0 1 .45 1 1s-.45 1-1 1z'/%3E%3C/svg%3E") no-repeat center;
}

/* 4. Text & Links */
#new-feature-section .details {
    flex-grow: 1;
	align-content: flex-start;
	
}

#new-feature-section .details strong {
    display: block;
    font-size: 1rem;
    color: #2c3e50;
	text-align: left; /* Forces the bold title to the left */
}

#new-feature-section .details span {
    font-size: 0.8rem;
    color: #7f8c8d;
}

#new-feature-section a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 5px 10px;
    border: 1px solid transparent;
    transition: all 0.2s;
}

#new-feature-section a:hover {
    border: 1px solid #007bff;
    border-radius: 4px;
}